
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #060612;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shine: rgba(255, 255, 255, 0.18);
  --text: #f2f0ff;
  --text-muted: rgba(242, 240, 255, 0.5);
  --text-dim: rgba(242, 240, 255, 0.28);
  --accent: #a78bfa;
  --accent2: #fb7185;
  --accent3: #34d399;
  --r: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(167, 139, 250, 0.3); border-radius: 4px; }

#cur {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .15s, height .15s;
}

#cur-trail {
  position: fixed;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(167, 139, 250, .5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all .22s cubic-bezier(.23, 1, .32, 1);
}

body:has(a:hover) #cur,
body:has(button:hover) #cur { width: 18px; height: 18px; }

body:has(a:hover) #cur-trail,
body:has(button:hover) #cur-trail {
  width: 52px;
  height: 52px;
  border-color: var(--accent2);
}

#scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  animation: drift 20s ease-in-out infinite alternate;
}

.o1 { width: 620px; height: 620px; background: #6c4fff; top: -220px; left: -180px; opacity: .55; animation-duration: 22s; }
.o2 { width: 520px; height: 520px; background: #ff4fa3; bottom: -180px; right: -120px; opacity: .5; animation-duration: 26s; animation-delay: -9s; }
.o3 { width: 360px; height: 360px; background: #00e5ff; top: 42%; left: 52%; opacity: .3; animation-duration: 18s; animation-delay: -5s; }
.o4 { width: 260px; height: 260px; background: #ffb800; top: 22%; right: 20%; opacity: .22; animation-duration: 24s; animation-delay: -13s; }

#scene::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(55px, -45px) scale(1.07); }
  66%  { transform: translate(-35px, 45px) scale(.96); }
  100% { transform: translate(38px, 22px) scale(1.03); }
}

@keyframes bpulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.75); }
}

@keyframes gs {
  0%   { background-position: 0%; }
  100% { background-position: 200%; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes floatC {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-14px) rotate(1deg); }
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--glass-shine) 0%, transparent 50%);
  pointer-events: none;
  opacity: .45;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: min(680px, calc(100vw - 40px));
  padding: 13px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(6, 6, 18, .6);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  box-shadow: 0 8px 40px rgba(0,0,0,.4), inset 0 1px 0 var(--glass-shine);
}

.nav-logo {
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .04em;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .74rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  transition: all .2s;
  letter-spacing: .03em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, .08);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  text-decoration: none;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .07em;
  padding: 8px 18px;
  border-radius: 100px;
  transition: opacity .2s, transform .2s;
  text-transform: uppercase;
}

.nav-cta:hover { opacity: .85; transform: scale(1.04); }

section:not(#hero) { padding: 96px 0; }

.slabel {
  font-size: .63rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slabel::before {
  content: '';
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}

h2 {
  font-weight: 800;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 52px;
}

h2 span {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.on {
  opacity: 1;
  transform: none;
}

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52, 211, 153, .12);
  border: 1px solid rgba(52, 211, 153, .3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--accent3);
  text-transform: uppercase;
  margin-bottom: 26px;
}

.bdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent3);
  box-shadow: 0 0 8px var(--accent3);
  animation: bpulse 2s ease-in-out infinite;
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: .93;
  letter-spacing: -.045em;
  margin-bottom: 22px;
}

.l2 {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .3);
  -webkit-text-fill-color: transparent;
  display: block;
}

.l3 {
  background: linear-gradient(90deg, var(--accent), var(--accent2), #00e5ff);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gs 4s linear infinite;
  display: block;
}

.hero-sub {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 430px;
  margin-bottom: 38px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  text-decoration: none;
  border: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  cursor: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(167, 139, 250, .35);
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 38px rgba(167, 139, 250, .55);
}

.btn-out {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--text);
  text-decoration: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .04em;
  padding: 14px 28px;
  border-radius: 100px;
  cursor: none;
  transition: all .2s;
}

.btn-out:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.hero-card {
  padding: 26px;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(34px) saturate(180%);
  -webkit-backdrop-filter: blur(34px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.15);
  animation: floatC 6s ease-in-out infinite;
}

.hc-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hc-dots { display: flex; gap: 5px; }
.hc-d { width: 9px; height: 9px; border-radius: 50%; }
.hc-d:nth-child(1) { background: #ff5f57; }
.hc-d:nth-child(2) { background: #ffbd2e; }
.hc-d:nth-child(3) { background: #27c93f; }

.hc-f {
  font-size: .65rem;
  color: var(--text-dim);
  margin-left: auto;
  letter-spacing: .04em;
}

.cl {
  font-family: 'DM Mono', 'SF Mono', 'Fira Code', monospace;
  font-size: .7rem;
  line-height: 1.9;
  color: var(--text-dim);
}

.kw  { color: #c792ea; }
.fn  { color: #82aaff; }
.str { color: #c3e88d; }
.cm  { color: rgba(255,255,255,.22); font-style: italic; }
.num { color: #f78c6c; }

.hc-blink {
  display: inline-block;
  width: 2px;
  height: 13px;
  background: var(--accent);
  vertical-align: middle;
  animation: blink .9s step-end infinite;
}

.hc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.chip {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 11px;
  border-radius: 100px;
  border: 1px solid;
}

.cp { border-color: rgba(167,139,250,.4); color: #a78bfa; background: rgba(167,139,250,.1); }
.cb { border-color: rgba(251,113,133,.4); color: #fb7185; background: rgba(251,113,133,.1); }
.cg { border-color: rgba(52,211,153,.4);  color: #34d399; background: rgba(52,211,153,.1); }
.cy { border-color: rgba(251,191,36,.4);  color: #fbbf24; background: rgba(251,191,36,.1); }

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.bc {
  padding: 26px;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 18px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  cursor: none;
  position: relative;
  overflow: hidden;
}

.bc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(167,139,250,.13), transparent 54%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}

.bc:hover::after { opacity: 1; }

.bc:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 139, 250, .3);
  box-shadow: 0 16px 44px rgba(0,0,0,.3);
}

.bc.wide { grid-column: span 2; }

.bc-icon  { font-size: 1.8rem; margin-bottom: 14px; }
.bc-title { font-weight: 700; font-size: .96rem; margin-bottom: 7px; letter-spacing: -.01em; }
.bc-desc  { font-size: .74rem; color: var(--text-muted); line-height: 1.75; }

.bc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 14px;
}

.bt {
  font-size: .6rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text-muted);
  letter-spacing: .04em;
}

.bc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.bc-stat {
  padding: 13px;
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  text-align: center;
}

.bc-n {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bc-l { font-size: .6rem; color: var(--text-dim); margin-top: 2px; letter-spacing: .06em; }

.abars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 58px;
  margin-top: 18px;
}

.abar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--accent), var(--accent2));
  opacity: .65;
  transition: opacity .2s, transform .2s;
}

.abar:hover {
  opacity: 1;
  transform: scaleY(1.1);
  transform-origin: bottom;
}

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

.pc {
  padding: 30px;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  transition: all .35s cubic-bezier(.23, 1, .32, 1);
  cursor: none;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pc.feat {
  grid-column: span 2;
  flex-direction: row;
  gap: 36px;
  align-items: center;
}

.pc:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.17);
  box-shadow: 0 22px 56px rgba(0,0,0,.34);
}

.pglow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .4s;
}

.pc:hover .pglow { opacity: 1; }

.gp  { background: radial-gradient(circle at 30% 50%, rgba(124,79,255,.16), transparent 60%); }
.gpk { background: radial-gradient(circle at 70% 30%, rgba(255,79,163,.13), transparent 60%); }
.gt  { background: radial-gradient(circle at 50% 70%, rgba(0,229,255,.1), transparent 60%); }
.ga  { background: radial-gradient(circle at 30% 30%, rgba(255,184,0,.1), transparent 60%); }

.pnum  { font-size: .6rem; color: var(--text-dim); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 18px; font-weight: 500; }
.ptitle { font-weight: 800; font-size: 1.18rem; letter-spacing: -.03em; margin-bottom: 9px; }
.pc.feat .ptitle { font-size: 1.8rem; }
.pdesc { font-size: .76rem; color: var(--text-muted); line-height: 1.8; flex: 1; }

.pfoot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.ptechs { display: flex; gap: 5px; flex-wrap: wrap; }

.pt {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .07em;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text-dim);
}

.plink {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .68rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .05em;
  transition: gap .2s;
  flex-shrink: 0;
}

.plink:hover { gap: 10px; }

.pvisual {
  width: 240px;
  flex-shrink: 0;
  height: 170px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  position: relative;
  overflow: hidden;
}

.pvisual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,79,255,.15), rgba(255,79,163,.1));
}

.agrid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 44px;
  align-items: start;
}

.about-text p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 15px;
}

.about-text p strong { color: var(--text); font-weight: 700; }

.tl { margin-top: 32px; }

.tli {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.tli:last-child { border-bottom: none; }

.tldot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 5px;
  box-shadow: 0 0 9px var(--accent);
}

.tlyear  { font-size: .63rem; color: var(--accent); font-weight: 700; letter-spacing: .1em; min-width: 38px; }
.tlrole  { font-weight: 700; font-size: .83rem; margin-bottom: 3px; }
.tlplace { font-size: .7rem; color: var(--text-muted); }

.aside { display: flex; flex-direction: column; gap: 14px; }

.scard {
  padding: 22px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
}

.sct {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
  font-weight: 700;
}

.avrow { display: flex; align-items: center; gap: 9px; font-size: .77rem; }

.avdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent3);
  box-shadow: 0 0 9px var(--accent3);
  flex-shrink: 0;
  animation: bpulse 2s ease-in-out infinite;
}

.llist { display: flex; flex-direction: column; gap: 9px; }

.li    { display: flex; flex-direction: column; gap: 3px; }
.litop { display: flex; justify-content: space-between; font-size: .71rem; }
.liname { font-weight: 500; }
.lipct  { color: var(--text-dim); }

.lbar {
  height: 3.5px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
}

.lf {
  height: 100%;
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(.23, 1, .32, 1);
}

.lp { background: linear-gradient(90deg, var(--accent), #8b5cf6); }
.lb { background: linear-gradient(90deg, var(--accent2), #f472b6); }
.ld { background: linear-gradient(90deg, var(--accent3), #06b6d4); }
.lg { background: linear-gradient(90deg, #fbbf24, #f59e0b); }
.lr { background: linear-gradient(90deg, #f87171, #ef4444); }

#contact { padding-bottom: 60px; }

.cgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.cinfo { display: flex; flex-direction: column; gap: 12px; }

.cicrd {
  padding: 18px 22px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  transition: all .22s;
}

.cicrd:hover {
  border-color: rgba(167,139,250,.4);
  transform: translateX(4px);
}

.ciico {
  font-size: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cilabel { font-size: .62rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .1em; }
.cival   { font-size: .8rem; font-weight: 500; }

.cform {
  padding: 32px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cft { font-weight: 800; font-size: 1.05rem; letter-spacing: -.02em; margin-bottom: 2px; }
.cfs { font-size: .73rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 6px; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }

.fg { display: flex; flex-direction: column; gap: 5px; }

.fg label {
  font-size: .61rem;
  color: var(--text-dim);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
}

.fg input,
.fg textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .78rem;
  font-weight: 300;
  padding: 11px 14px;
  border-radius: 10px;
  outline: none;
  transition: border-color .2s, background .2s;
  resize: none;
}

.fg input:focus,
.fg textarea:focus {
  border-color: rgba(167,139,250,.5);
  background: rgba(167,139,250,.06);
}

.fg textarea { min-height: 100px; }
.fg input::placeholder,
.fg textarea::placeholder { color: var(--text-dim); }

footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 26px 0;
}

.fi {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fcopy { font-size: .63rem; color: var(--text-dim); letter-spacing: .06em; }

.fsoc { display: flex; gap: 10px; }

.sbtn {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: .8rem;
  transition: all .2s;
}

.sbtn:hover {
  background: rgba(167,139,250,.15);
  border-color: rgba(167,139,250,.4);
  color: var(--accent);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  nav { width: calc(100vw - 32px); padding: 11px 14px; }
  .nav-links { display: none; }

  #hero { padding-top: 88px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  h1 { font-size: 2.6rem; }

  .bento { grid-template-columns: 1fr; }
  .bc.wide { grid-column: span 1; }

  .pgrid { grid-template-columns: 1fr; }
  .pc.feat { grid-column: span 1; flex-direction: column; }
  .pvisual { display: none; }

  .agrid, .cgrid { grid-template-columns: 1fr; }
  .aside { display: none; }
  .frow { grid-template-columns: 1fr; }

  footer .fi { flex-direction: column; gap: 16px; text-align: center; }

  body { cursor: auto; }
  #cur, #cur-trail { display: none; }
}