:root {
  --bg: #0b0b09;
  --paper: #f2eee4;
  --text: #f2eee4;
  --muted: #a7a095;
  --dim: #6f695f;
  --surface: #151511;
  --surface-2: #1e1d18;
  --line: rgba(242, 238, 228, 0.15);
  --line-strong: rgba(242, 238, 228, 0.36);
  --accent: #d7ff4f;
  --accent-soft: rgba(215, 255, 79, 0.12);
  --max: 1160px;
  --gutter: clamp(18px, 3vw, 44px);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: var(--sans);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(215,255,79,0.07), transparent 33rem),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 92px 92px, 92px 92px, auto;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 4px);
  opacity: .045;
  z-index: 999;
}
::selection { background: var(--accent); color: #10110c; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: 12px;
  padding: 10px 14px;
  background: var(--accent);
  color: #111;
  transform: translateY(-160%);
  transition: transform .2s ease;
  z-index: 1000;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - var(--gutter) * 2), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px var(--gutter);
  backdrop-filter: blur(18px);
  background: rgba(11, 11, 9, 0.76);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-grid;
  grid-template-columns: 42px auto;
  gap: 10px;
  align-items: center;
  min-width: max-content;
}
.mark {
  width: 42px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--accent);
  position: relative;
  overflow: visible;
}
.shocker-logo {
  width: 40px;
  height: auto;
  display: block;
  overflow: visible;
  filter:
    drop-shadow(0 0 5px rgba(215,255,79,.32))
    drop-shadow(0 0 13px rgba(215,255,79,.12));
}
.shocker-core,
.shocker-echo {
  fill: currentColor;
  transform-box: fill-box;
  transform-origin: center;
}
.shocker-core {
  animation: shocker-twitch 4.8s steps(1, end) infinite, shocker-glow 4.8s ease-in-out infinite;
}
.shocker-echo {
  opacity: 0;
  mix-blend-mode: screen;
}
.echo-a { animation: shocker-echo-a 4.8s steps(1, end) infinite; }
.echo-b { animation: shocker-echo-b 4.8s steps(1, end) infinite; }
.echo-c { animation: shocker-echo-c 4.8s steps(1, end) infinite; }
.shocker-sparks {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.6;
  stroke-linecap: round;
  opacity: .48;
  filter: drop-shadow(0 0 4px rgba(215,255,79,.28));
  transform-box: view-box;
  transform-origin: 58.7px 43.45px;
  animation: shocker-orbit 7.5s linear infinite;
}
.spark {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: spark-jitter 3.8s steps(1, end) infinite;
}
.spark-1 { animation-delay: -.12s; }
.spark-2 { animation-delay: -.68s; }
.spark-3 { animation-delay: -1.14s; }
.spark-4 { animation-delay: -1.72s; }
.spark-5 { animation-delay: -2.1s; }
.spark-6 { animation-delay: -2.64s; }
.spark-7 { animation-delay: -3.02s; }
.spark-8 { animation-delay: -3.5s; }
.brand:hover .shocker-logo {
  filter:
    drop-shadow(0 0 7px rgba(215,255,79,.48))
    drop-shadow(0 0 18px rgba(215,255,79,.22));
}
.brand:hover .shocker-core,
.brand:hover .shocker-echo,
.brand:hover .spark,
.brand:hover .shocker-sparks {
  animation-duration: 2.6s;
}
@keyframes shocker-orbit {
  to { transform: rotate(360deg); }
}
@keyframes spark-jitter {
  0%, 100% { opacity: 0; transform: translate(0,0) scale(1); }
  10% { opacity: .16; transform: translate(.4px,-.35px) scale(1.08); }
  12% { opacity: .56; transform: translate(1.5px,-1px) scale(1.28); }
  14% { opacity: .08; transform: translate(-.4px,.25px) scale(.96); }
  58% { opacity: .28; transform: translate(-1px,.75px) scale(1.18); }
  60% { opacity: .62; transform: translate(1.1px,.65px) scale(1.34); }
  62% { opacity: .06; transform: translate(0,0) scale(.95); }
}
@keyframes shocker-glow {
  0%, 100% { filter: brightness(1); }
  11%, 57% { filter: brightness(1.08); }
  12%, 58% { filter: brightness(1.22); }
  13%, 59% { filter: brightness(1.04); }
}
@keyframes shocker-twitch {
  0%, 54%, 61%, 100% { transform: translate(0,0) rotate(0deg) scale(1); }
  55% { transform: translate(.55px,-.35px) rotate(.7deg) scale(1.01); }
  56% { transform: translate(-.45px,.32px) rotate(-.55deg) scale(.998); }
  57% { transform: translate(.28px,.18px) rotate(.32deg) scale(1.006); }
}
@keyframes shocker-echo-a {
  0%, 18%, 26%, 100% { opacity: 0; transform: translate(0,0) rotate(0deg) scale(1); }
  20% { opacity: .18; transform: translate(1.6px,-.8px) rotate(2.2deg) scale(1.035); }
  22% { opacity: .06; transform: translate(-.8px,.6px) rotate(-1.4deg) scale(1.02); }
}
@keyframes shocker-echo-b {
  0%, 50%, 58%, 100% { opacity: 0; transform: translate(0,0) rotate(0deg) scale(1); }
  52% { opacity: .15; transform: translate(-1.4px,1px) rotate(-2.5deg) scale(1.04); }
  54% { opacity: .06; transform: translate(1px,-.6px) rotate(1.2deg) scale(1.018); }
}
@keyframes shocker-echo-c {
  0%, 78%, 86%, 100% { opacity: 0; transform: translate(0,0) rotate(0deg) scale(1); }
  80% { opacity: .14; transform: translate(.7px,1.3px) rotate(2.7deg) scale(1.04); }
  82% { opacity: .05; transform: translate(-.8px,-.55px) rotate(-1.5deg) scale(1.018); }
}
.brand span:last-child,
.site-nav,
.eyebrow,
.panel-label,
.work-meta,
.tags,
.btn,
.text-link,
.site-footer {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  font-weight: 700;
}
.site-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px;
  color: var(--muted);
}
.site-nav a {
  padding: 9px 10px;
  border: 1px solid transparent;
}
.site-nav a:hover { color: var(--text); border-color: var(--line); background: rgba(255,255,255,.03); }

.hero {
  min-height: calc(100vh - 62px);
  display: grid;
  align-items: end;
  padding: clamp(84px, 13vh, 164px) 0 clamp(42px, 8vh, 94px);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(36px, 7vw, 96px);
  align-items: end;
}
.eyebrow {
  color: var(--accent);
  margin-bottom: 18px;
}
h1 {
  max-width: 980px;
  font-size: clamp(46px, 8.6vw, 126px);
  line-height: .9;
  letter-spacing: -.075em;
  margin-bottom: 26px;
}
.lede {
  max-width: 790px;
  color: #dfd8cc;
  font-size: clamp(19px, 2.05vw, 27px);
  line-height: 1.25;
  margin-bottom: 30px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: rgba(255,255,255,.025);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); border-color: var(--accent); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: #10110c; }
.btn.primary:hover { background: #efff8c; }

.panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  padding: 22px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.panel-label { color: var(--muted); }
.facts { margin: 0; display: grid; gap: 18px; }
.facts div { border-top: 1px solid var(--line); padding-top: 16px; }
.facts dt {
  font: 700 11px/1 var(--sans);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 8px;
}
.facts dd { margin: 0; color: #ded8cc; }

.strip {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip p {
  margin: 0;
  padding: 18px 14px;
  border-right: 1px solid var(--line);
  font: 700 12px/1.1 var(--sans);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}
.strip p:first-child { border-left: 1px solid var(--line); }

.section {
  padding: clamp(70px, 10vw, 132px) 0;
  border-bottom: 1px solid var(--line);
}
.section.compact { padding: clamp(42px, 7vw, 78px) 0; }
.section-intro {
  display: grid;
  grid-template-columns: 210px minmax(0, 760px);
  gap: clamp(22px, 5vw, 72px);
  margin-bottom: clamp(36px, 6vw, 68px);
}
.section-intro h2 {
  font-size: clamp(32px, 5vw, 70px);
  line-height: .95;
  letter-spacing: -.055em;
  margin-bottom: 18px;
}
.section-intro p:not(.eyebrow),
.about-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.work-grid {
  display: grid;
  gap: 18px;
}
.work-card {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: rgba(11,11,9,.94);
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.work-card:hover {
  border-color: var(--line-strong);
  background: var(--surface);
}
.work-visual {
  position: relative;
  min-height: 420px;
  display: block;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--surface-2);
}
.work-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(11,11,9,.35));
  pointer-events: none;
}
.work-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .5s ease;
}
.work-card:hover .work-visual img { transform: scale(1.035); filter: contrast(1.04); }
.work-copy {
  padding: clamp(24px, 4.6vw, 56px);
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: center;
}
.work-meta {
  color: var(--accent);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 22px;
}
.work-meta span + span { color: var(--dim); }
.work-card h3 {
  font-size: clamp(30px, 4vw, 56px);
  line-height: .95;
  letter-spacing: -.052em;
  margin-bottom: 14px;
}
.summary { color: #ddd6c9; font-size: 18px; max-width: 680px; }
.proofline {
  color: var(--muted);
  margin: 12px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 22px 0 24px;
  padding: 0;
  color: var(--dim);
}
.tags li {
  border: 0;
  border-radius: 5px;
  padding: 7px 10px;
  background: var(--surface-2);
  color: #c8c0b2;
}
.text-link {
  width: max-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--accent);
  color: #10110c;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.text-link:hover {
  transform: translateY(-2px);
  border-color: #efff8c;
  background: #efff8c;
  color: #10110c;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(215,255,79,.22);
  background:
    radial-gradient(circle at 8% 0%, rgba(215,255,79,.16), transparent 34rem),
    linear-gradient(135deg, rgba(215,255,79,.08), rgba(255,255,255,.015) 48%, rgba(215,255,79,.035)),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
}
.proof-grid div {
  min-height: 168px;
  padding: 24px;
  border-right: 1px solid rgba(242,238,228,.11);
  border-bottom: 1px solid rgba(242,238,228,.11);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.008));
  position: relative;
  overflow: hidden;
  transition: background .2s ease, transform .2s ease;
}
.proof-grid div:hover {
  background: linear-gradient(180deg, rgba(215,255,79,.075), rgba(255,255,255,.018));
  transform: translateY(-2px);
}
.proof-grid div:nth-child(3n) { border-right: 0; }
.proof-grid div:nth-last-child(-n+3) { border-bottom: 0; }
.proof-grid strong {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-size: clamp(34px, 5vw, 64px);
  line-height: .9;
  letter-spacing: -.06em;
  text-shadow: 0 0 26px rgba(215,255,79,.16);
}
.proof-grid span {
  position: relative;
  z-index: 1;
  color: #d8d1c4;
  max-width: 270px;
}


.about { border-bottom: 0; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 84px);
}
.about .section-intro { display: block; margin: 0; }
.about-copy { max-width: 720px; }
.about-copy p:last-of-type { margin-bottom: 0; }
.about-actions { margin-top: 34px; }

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px var(--gutter);
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.site-footer a { color: var(--paper); }
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  transition: color .2s ease, transform .2s ease;
}
.footer-link:hover {
  color: var(--accent);
  transform: translateY(-1px);
}
.footer-icon {
  display: inline-block;
  flex: 0 0 auto;
  fill: currentColor;
  opacity: .95;
}
.insta-icon {
  width: 15px;
  height: 16px;
}
.email-icon {
  width: 18px;
  height: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn,
  .work-visual img { transition: none; }
  .shocker-core,
  .shocker-echo,
  .shocker-sparks,
  .spark { animation: none; }
  .shocker-echo,
  .spark { opacity: 0; }
}

@media (max-width: 930px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .hero { min-height: auto; }
  .hero-grid,
  .section-intro,
  .about-grid { grid-template-columns: 1fr; }
  .panel { min-height: auto; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip p:nth-child(odd) { border-left: 1px solid var(--line); }
  .work-card { grid-template-columns: 1fr; min-height: 0; }
  .work-visual { min-height: clamp(260px, 54vw, 420px); border-right: 0; border-bottom: 1px solid var(--line); }
  .work-copy { min-height: 0; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid div:nth-child(3n) { border-right: 1px solid var(--line); }
  .proof-grid div:nth-child(even) { border-right: 0; }
  .proof-grid div:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .proof-grid div:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 560px) {
  .site-nav { justify-content: flex-start; }
  .brand { grid-template-columns: 38px auto; }
  .brand span:last-child { font-size: 11px; }
  .mark { width: 38px; }
  .shocker-logo { width: 36px; }
  h1 { font-size: clamp(42px, 15vw, 72px); }
  .lede { font-size: 18px; }
  .strip-grid,
  .proof-grid { grid-template-columns: 1fr; }
  .strip p,
  .strip p:first-child,
  .strip p:nth-child(odd) { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
  .proof-grid div,
  .proof-grid div:nth-child(3n),
  .proof-grid div:nth-child(even),
  .proof-grid div:nth-last-child(-n+2),
  .proof-grid div:nth-last-child(-n+3) { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-grid div:last-child { border-bottom: 0; }
  .tags {
    gap: 7px;
    margin-bottom: 18px;
  }
  .tags li {
    padding: 6px 9px;
    font-size: 10px;
    letter-spacing: .08em;
  }
  .text-link {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    font-size: 13px;
    letter-spacing: .1em;
    background: var(--accent);
    border-color: var(--accent);
    color: #10110c;
  }
}
