/* SOXXD — GET SOXXD. Coming-Soon Page
   Brand: Off-White ground, Jet Black ink, Neon Volt accent.
   Berlin editorial · i-D meets skate flyer.
*/

:root {
  --volt: #CCFF00;
  --black: #0D0D0D;
  --off-white: #F5F5F0;
  --pink: #FF2D78;
  --blue: #00B4FF;
  --orange: #FF6B2C;

  --accent: var(--volt);      /* primary accent — tweakable */
  --accent-hover: var(--pink); /* hover state — tweakable */

  --maxw: 1680px;
  --gutter: clamp(20px, 4vw, 56px);

  --f-display: "Clash Display", "Arial Black", system-ui, sans-serif;
  --f-body: "Satoshi", "Inter", system-ui, sans-serif;

  --hairline: 1px solid color-mix(in oklab, var(--black) 12%, transparent);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--off-white);
  color: var(--black);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* —— Typography —— */
.display {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.86;
}

.eyebrow {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* —— Top nav —— */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  mix-blend-mode: difference;
  color: #fff;
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
.nav__logo {
  height: 26px;
  width: auto;
  transition: transform .35s cubic-bezier(.5, 1.8, .4, .9);
  transform-origin: left center;
}
.nav__logo:hover { transform: rotate(-2deg) scale(1.04); }
/* PNG ist weiß; mix-blend-mode: difference auf .nav adaptiert je nach Hintergrund.
   Kein filter nötig — weiss über off-white wird dunkel, weiss über jet-black bleibt weiss. */
.nav__logo img { height: 100%; width: auto; }
.nav__drop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav__drop .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: .5; }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px var(--gutter) 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  grid-template-rows: auto 1fr auto;
  gap: 32px 56px;
  align-items: start;
}
.hero__kicker {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  padding-top: 10px;
}
.hero__kicker .meta {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  max-width: 28ch;
  opacity: .65;
}
.hero__kicker .ticker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__kicker .ticker .bar {
  width: 80px; height: 1px;
  background: var(--black);
  opacity: .4;
}

.hero__title {
  grid-column: 1 / -1;
  position: relative;
  font-size: clamp(64px, 14.5vw, 240px);
  margin: 0;
  z-index: 2;
  padding-top: 8px;
}
.hero__title .line { display: block; white-space: nowrap; }
.hero__title .accent {
  position: relative;
  display: inline-block;
}
.hero__title .accent::after {
  content: "";
  position: absolute;
  inset: auto -0.05em -0.04em -0.05em;
  height: 0.22em;
  background: var(--accent);
  z-index: -1;
  transform: skewX(-8deg);
}
.hero__title .dot {
  display: inline-block;
  width: 0.18em;
  height: 0.18em;
  background: var(--accent);
  vertical-align: baseline;
  margin-left: 0.04em;
  margin-bottom: 0.04em;
}

.hero__media {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  position: relative;
  margin-top: -10vw;
}

.hero__brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  translate: 0 var(--px-y, 0px);
  width: min(82%, 1100px);
  pointer-events: none;
  z-index: 4;
  will-change: translate;
}
.hero__brand img {
  width: 100%;
  height: auto;
  display: block;
  /* Subtle lift so the wordmark floats off the photo without looking pasted on. */
  filter: drop-shadow(0 6px 28px rgba(0, 0, 0, 0.35));
}
/* Faint vignette behind the wordmark to anchor it against busy photo areas. */
.hero__media .img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.12) 38%,
    rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 3;
}
.hero__media .img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ddd;
  isolation: isolate;
}
.hero__media img {
  width: 100%;
  height: 130%;
  margin-top: -15%;
  object-fit: cover;
  object-position: center 30%;
  translate: 0 var(--px-y, 0px);
  will-change: translate;
}
.hero__media .stamp {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--black);
  color: #fff;
  padding: 6px 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero__media .corner {
  position: absolute;
  right: -22px; bottom: -22px;
  width: 110px; height: 110px;
  background: var(--black);
  z-index: 3;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  font-size: 13px;
  line-height: 1.05;
  color: var(--off-white);
  transform: rotate(8deg);
}

.hero__copy {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero__sub {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.3;
  font-weight: 500;
  max-width: 22ch;
}
.hero__sub em {
  font-style: normal;
  background: var(--black);
  color: var(--off-white);
  padding: 0 6px;
}

/* —— Button —— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 30px;
  background: var(--accent);
  color: var(--black);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
  position: relative;
  cursor: pointer;
}
.btn:hover {
  background: var(--accent-hover);
  color: var(--off-white);
  transform: translateY(-2px);
}
.btn .arrow {
  width: 22px; height: 22px;
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(4px) rotate(-45deg); }
.btn--big { padding: 28px 38px; font-size: 22px; }
.btn--black { background: var(--black); color: var(--off-white); }
.btn--black:hover { background: var(--pink); color: var(--off-white); }

/* —— Marquee strip —— */
.marquee {
  background: var(--black);
  color: var(--off-white);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  overflow: hidden;
  padding: 16px 0;
  display: flex;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 56px;
  padding-right: 56px;
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(22px, 3.4vw, 56px);
  letter-spacing: -0.01em;
  animation: scroll 36s linear infinite;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee__track .star {
  display: inline-block;
  color: var(--accent);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* —— Manifesto —— */
.manifesto {
  background: var(--black);
  color: var(--off-white);
  padding: clamp(80px, 12vw, 180px) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.manifesto__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 56px);
}
.manifesto__list li {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 7vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  position: relative;
  padding-left: 1.1em;
}
.manifesto__list li::before {
  content: counter(item, decimal-leading-zero);
  counter-increment: item;
  position: absolute;
  left: 0; top: 0.15em;
  font-family: var(--f-body);
  font-size: 0.18em;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.manifesto__list { counter-reset: item; }
.manifesto__list li .hl { color: var(--accent); }
.manifesto__list li em {
  font-style: normal;
  -webkit-text-stroke: 2px var(--off-white);
  color: transparent;
}

.manifesto__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.manifesto__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform .8s ease;
}
.manifesto:hover .manifesto__media img { transform: scale(1); }
.manifesto__media .tag {
  position: absolute;
  bottom: 18px; left: 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--black);
  padding: 6px 10px;
  font-weight: 600;
}

/* —— Mood gallery —— */
.mood {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.mood__head {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 80px;
}
.mood__head h2 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(48px, 8vw, 140px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  max-width: 12ch;
}
.mood__head h2 em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
.mood__head h2 em::before {
  content: "";
  position: absolute;
  inset: 0.1em -0.08em 0.1em -0.08em;
  background: var(--accent);
  z-index: -1;
  transform: rotate(-1.5deg);
}
.mood__head p {
  font-size: 16px;
  max-width: 38ch;
  opacity: .8;
  margin: 0;
}

.mood__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 60px;
  gap: clamp(16px, 2vw, 28px);
  padding: 0 var(--gutter);
}
.mood__item { position: relative; overflow: hidden; }
.mood__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.6,.2,1);
}
.mood__item:hover img { transform: scale(1.04); }
.mood__item .note {
  position: absolute;
  font-family: "Caveat", "Bradley Hand", cursive;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 0 var(--accent);
  pointer-events: none;
  z-index: 4;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.mood__item .note--pink { color: var(--pink); }
.mood__item .note--black { color: var(--black); }
.mood__item .note--off { color: var(--off-white); }

.mood__item--a { grid-column: 1 / span 7; grid-row: span 8; }
.mood__item--a .note { bottom: -10px; right: 14px; transform: rotate(-4deg); }

.mood__item--b { grid-column: 8 / span 5; grid-row: span 5; }
.mood__item--b .note { top: -28px; left: 8px; transform: rotate(-3deg); }

.mood__item--c { grid-column: 8 / span 5; grid-row: span 5; }
.mood__item--c .note { bottom: -8px; right: 0; transform: rotate(2deg); }

.mood__item--d { grid-column: 1 / span 4; grid-row: span 6; }
.mood__item--d .note { top: -30px; left: 0; transform: rotate(-2deg); }

.mood__item--e { grid-column: 5 / span 8; grid-row: span 6; }
.mood__item--e .note { bottom: -10px; left: 16px; transform: rotate(-2deg); }

/* —— Bleed image —— */
.bleed {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  isolation: isolate;
}
.bleed img {
  width: 100%;
  height: 140%;
  margin-top: -20%;
  object-fit: cover;
  translate: 0 var(--px-y, 0px);
  will-change: translate;
}
.bleed--full { aspect-ratio: 16 / 9; }
.bleed .ovl {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  translate: 0 var(--px-y, 0px);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(60px, 12vw, 220px);
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.85;
  text-align: center;
  white-space: nowrap;
  /* Soft drop-shadow lifts the type off the photo without dropping a hard stamp. */
  text-shadow: 0 6px 32px rgba(0, 0, 0, 0.4);
  z-index: 2;
  will-change: translate;
}
/* Same vignette trick on full-bleed images. */
.bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
    rgba(0, 0, 0, 0.32) 0%,
    rgba(0, 0, 0, 0.14) 40%,
    rgba(0, 0, 0, 0) 75%);
  pointer-events: none;
  z-index: 1;
}

/* —— Product teaser —— */
.product {
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.product__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.product__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product__media .ribbon {
  position: absolute;
  top: 30px; left: -10px;
  background: var(--black);
  color: var(--accent);
  padding: 8px 16px;
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
  transform: rotate(-4deg);
}

.product__body h2 {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
}
.product__body h2 .accent {
  position: relative; display: inline-block;
}
.product__body h2 .accent::after {
  content: "";
  position: absolute;
  inset: auto -0.05em 0.05em -0.05em;
  height: 0.18em;
  background: var(--accent);
  z-index: -1;
}
.product__list {
  list-style: none;
  margin: 0 0 36px; padding: 0;
  border-top: 1px solid var(--black);
}
.product__list li {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--black);
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.01em;
}
.product__list li .num {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  opacity: .5;
}
.product__list li .dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  justify-self: end;
}

/* —— Signup —— */
.signup {
  background: var(--accent);
  color: var(--black);
  padding: clamp(80px, 12vw, 180px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.signup__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.signup h2 {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(56px, 11vw, 200px);
  line-height: 0.85;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  max-width: 11ch;
}
.signup h2 em { font-style: normal; -webkit-text-stroke: 3px var(--black); color: transparent; }
.signup__sub {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  max-width: 32ch;
  margin: 0 0 48px;
}

.signup__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  max-width: 720px;
  border: 2px solid var(--black);
  background: var(--accent);
}
.signup__form input {
  border: 0;
  background: transparent;
  padding: 26px 28px;
  font: inherit;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--black);
  outline: none;
  min-width: 0;
}
.signup__form input::placeholder { color: rgba(13, 13, 13, 0.5); }
.signup__form button {
  background: var(--black);
  color: var(--off-white);
  border: 0;
  padding: 0 36px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color .2s, color .2s;
  cursor: pointer;
}
.signup__form button:hover { background: var(--pink); color: #fff; }
.signup__form.is-error { border-color: var(--pink); animation: shake .35s ease; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

.signup__fine {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.signup__fine a { text-decoration: underline; }

.signup__counter {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.signup__counter .star { color: var(--black); }
.signup__counter .num {
  background: var(--black);
  color: var(--accent);
  padding: 6px 10px;
  font-size: 18px;
  letter-spacing: 0.04em;
}

/* Success state */
.signup.is-success {
  background: var(--black);
  color: var(--off-white);
}
.signup.is-success h2 em { -webkit-text-stroke: 3px var(--off-white); }
.signup.is-success .signup__form,
.signup.is-success .signup__counter,
.signup.is-success .signup__fine { display: none; }
.signup__success {
  display: none;
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.01em;
  line-height: 1;
}
.signup__success .star { color: var(--accent); }
.signup.is-success .signup__success { display: block; }
.signup.is-success h2 { display: none; }
.signup.is-success .signup__sub { display: none; }

/* —— Social —— */
.social {
  background: var(--black);
  color: var(--off-white);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.social__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
}
.social h2 {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 7vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 12ch;
}
.social__handles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}
.social__handle {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(245,245,240,.2);
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: -0.01em;
  color: var(--off-white);
  transition: background-color .2s, color .2s, border-color .2s;
}
.social__handle:hover {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}
.social__handle .platform {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  opacity: .65;
}
.social__handle:hover .platform { opacity: .9; }
.social__handle svg { width: 26px; height: 26px; }

/* —— Footer —— */
.footer {
  padding: 60px var(--gutter) 40px;
  border-top: 1px solid var(--black);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.footer__logo { height: 22px; transition: transform .35s cubic-bezier(.5, 1.8, .4, .9); display: inline-block; }
.footer__logo:hover { transform: rotate(-2deg) scale(1.04); }
/* logo-black.png is already Jet Black — no filter needed. */
.footer__logo img { height: 100%; width: auto; }
.footer__meta {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: .7;
  display: flex;
  gap: 24px;
  justify-content: center;
}
.footer__meta a:hover { color: var(--pink); }
.footer__echo {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.footer__echo .dot {
  display: inline-block;
  width: 0.45em; height: 0.45em;
  background: var(--accent);
  margin-left: 4px;
  vertical-align: baseline;
}

/* —— Scroll reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition: opacity .9s cubic-bezier(.2,.7,.1,1), transform .9s cubic-bezier(.2,.7,.1,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* —— Volt splash easter egg —— */
.splash {
  position: fixed;
  inset: 0;
  background: var(--accent);
  z-index: 100;
  pointer-events: none;
  display: grid;
  place-items: center;
  animation: splash .9s cubic-bezier(.2,.8,.2,1) forwards;
}
.splash__text {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 10vw, 180px);
  color: var(--black);
  letter-spacing: -0.02em;
}
@keyframes splash {
  0% { clip-path: circle(0% at 50% 50%); }
  60% { clip-path: circle(120% at 50% 50%); }
  100% { clip-path: circle(120% at 50% 50%); opacity: 0; }
}

/* —— Tweaks Panel (vanilla) —— */
.tweaks {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 80;
  width: 280px;
  background: var(--black);
  color: var(--off-white);
  padding: 18px 18px 16px;
  font-family: var(--f-body);
  font-size: 13px;
  border: 1px solid rgba(245,245,240,.16);
  display: none;
}
.tweaks.open { display: block; }
.tweaks__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245,245,240,.12);
}
.tweaks__title {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.tweaks__title .dot {
  display: inline-block;
  width: 0.5em; height: 0.5em;
  background: var(--accent);
  margin-right: 6px;
  vertical-align: baseline;
}
.tweaks__close {
  background: transparent;
  border: 0;
  color: var(--off-white);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.tweaks__row { margin-bottom: 14px; }
.tweaks__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: .7;
}
.tweaks__swatches {
  display: flex; gap: 8px;
}
.tweaks__swatches button {
  width: 32px; height: 32px;
  border: 2px solid transparent;
  background: var(--c);
  cursor: pointer;
  padding: 0;
  outline: 0;
  transition: border-color .15s;
}
.tweaks__swatches button[aria-pressed="true"] {
  border-color: var(--off-white);
}
.tweaks__seg {
  display: flex;
  border: 1px solid rgba(245,245,240,.2);
}
.tweaks__seg button {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--off-white);
  padding: 8px 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
}
.tweaks__seg button[aria-pressed="true"] {
  background: var(--accent);
  color: var(--black);
  font-weight: 700;
}
.tweaks__check {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
}
.tweaks__check input { accent-color: var(--accent); }

/* —— Layout variants (tweakable) —— */
body[data-hero="centered"] .hero {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto;
  text-align: center;
  align-items: center;
  padding-top: 80px;
  gap: 20px 56px;
}
body[data-hero="centered"] .hero__media {
  grid-column: 1; grid-row: 2;
  margin: 0 auto 24px;
  max-width: min(1280px, 100%);
  width: 100%;
}
body[data-hero="centered"] .hero__media .img-wrap { aspect-ratio: 16 / 10; }
body[data-hero="centered"] .hero__title {
  grid-column: 1; grid-row: 3;
  font-size: clamp(48px, 10vw, 160px);
}
body[data-hero="centered"] .hero__title .line { white-space: nowrap; }
body[data-hero="centered"] .hero__copy {
  grid-column: 1; grid-row: 4;
  align-self: start;
  align-items: center;
  max-width: 640px;
  margin: 16px auto 0;
}
body[data-hero="centered"] .hero__sub { margin: 0 auto; }

body[data-hero="split"] .hero {
  grid-template-rows: auto auto;
  align-items: stretch;
}
body[data-hero="split"] .hero__title { font-size: clamp(56px, 12vw, 220px); grid-column: 1; }
body[data-hero="split"] .hero__title .line { white-space: normal; }
body[data-hero="split"] .hero__media {
  grid-column: 2; grid-row: 2;
  margin-top: 0;
}
body[data-hero="split"] .hero__copy { grid-row: 2; }

/* Counter visibility */
body[data-counter="off"] .signup__counter { display: none; }

/* —— Responsive —— */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px var(--gutter) 40px;
    gap: 24px;
  }
  .hero__title { font-size: clamp(64px, 22vw, 200px); }
  .hero__title .line { white-space: normal; }
  .hero__media { grid-column: 1; grid-row: auto; margin-top: 12px; }
  .hero__media .img-wrap { aspect-ratio: 3 / 4; }
  .hero__copy { grid-column: 1; grid-row: auto; }
  .hero__kicker .meta { display: none; }

  /* Calmer bleed overlay so it doesn't run off the edges on phones */
  .bleed .ovl {
    font-size: clamp(40px, 14vw, 96px);
    white-space: nowrap;
    text-shadow: 0 4px 18px rgba(0,0,0,.45);
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .manifesto__media { aspect-ratio: 16 / 10; }

  .mood__head { grid-template-columns: 1fr; align-items: start; margin-bottom: 40px; }
  .mood__grid { grid-auto-rows: 40px; gap: 12px; }
  .mood__item--a { grid-column: 1 / -1; grid-row: span 7; }
  .mood__item--b { grid-column: 1 / span 7; grid-row: span 5; }
  .mood__item--c { grid-column: 8 / -1; grid-row: span 5; }
  .mood__item--d { grid-column: 1 / span 5; grid-row: span 6; }
  .mood__item--e { grid-column: 6 / -1; grid-row: span 6; }

  .product { grid-template-columns: 1fr; }
  .product__media { aspect-ratio: 4 / 5; max-height: 70vh; }

  .signup__form { grid-template-columns: 1fr; }
  .signup__form button { padding: 22px; }

  .social__inner { grid-template-columns: 1fr; }

  .footer { grid-template-columns: 1fr; text-align: center; }
  .footer__meta { justify-content: center; flex-wrap: wrap; }

  .tweaks { width: calc(100vw - 24px); right: 12px; bottom: 12px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav { padding: 14px var(--gutter); gap: 12px; }
  .nav__logo { height: 18px; }
  .nav__drop { font-size: 10px; letter-spacing: 0.12em; }
  .nav__drop .full { display: none; } /* short label on mobile */
  .hero__title { font-size: clamp(56px, 24vw, 180px); }
  .hero__media .corner { width: 80px; height: 80px; font-size: 11px; right: -10px; bottom: -10px; }
  .marquee { padding: 12px 0; }
  .marquee__track { font-size: 24px; gap: 32px; }
  .marquee__track span { gap: 32px; }
  .bleed .ovl {
    font-size: clamp(36px, 13vw, 72px);
  }
  .bleed { aspect-ratio: 4 / 5; }
}
