/* =========================================================
   PORTFOLIO UPGRADE v81
   Shared dark-editorial shell, evidence system, service lanes,
   lead intake, and consistent media/control behavior.
   ========================================================= */

:root {
  color-scheme: dark;
  --v81-bg: #0d0d0c;
  --v81-panel: #11110f;
  --v81-panel-soft: #151513;
  --v81-panel-raised: #1a1a17;
  --v81-text: #f1efe9;
  --v81-muted: #92928b;
  --v81-faint: #64645e;
  --v81-line: rgba(241, 239, 233, .12);
  --v81-line-strong: rgba(241, 239, 233, .2);
  --v81-lime: #d6ff4b;
  --v81-lime-soft: rgba(214, 255, 75, .075);
  --v81-lime-line: rgba(214, 255, 75, .32);
  --v81-radius: 24px;
  --v81-ease: cubic-bezier(.2, .76, .2, 1);
  --portfolio-scrollbar-thumb: rgba(214, 255, 75, .5);
  --portfolio-scrollbar-thumb-hover: rgba(214, 255, 75, .92);
}

::selection {
  background: var(--v81-lime);
  color: #0b0b09;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 1px solid var(--v81-lime);
  outline-offset: 3px;
}

body {
  background:
    radial-gradient(circle at 14% 4%, rgba(214, 255, 75, .025), transparent 28rem),
    var(--v81-bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .009) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 62%);
}

/* ---------- navigation + hero ---------- */
.nav {
  position: relative;
  z-index: 80;
}

.nav-cta {
  border: 1px solid var(--v81-line-strong);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .015);
  transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease;
}

.hero {
  min-height: min(860px, calc(100svh - 100px));
  padding: clamp(88px, 10vh, 132px) 0;
}

.hero h1 {
  max-width: 1160px;
  font-size: clamp(54px, 8.35vw, 126px);
}

.hero-description {
  max-width: 650px;
  margin-top: clamp(34px, 5vw, 52px);
}

.hero-service-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 29px;
}

.hero-service-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--v81-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .012);
  color: #aaa9a2;
  font: 8px/1 var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .22s var(--v81-ease), color .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.hero-service-chip span {
  color: var(--v81-lime);
}

.hero-service-chip--accent {
  border-color: var(--v81-lime-line);
  background: var(--v81-lime-soft);
  color: var(--v81-text);
}

.hero-actions .button,
.editing-collaboration-rail .button,
.lead-submit {
  border: 0;
  cursor: pointer;
}

/* ---------- Weekender evidence ---------- */
.wkndr-evidence-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid var(--v81-line);
  border-radius: 20px;
  background: var(--v81-line);
}

.wkndr-evidence-snapshot article {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background:
    radial-gradient(circle at 20% 10%, rgba(214, 255, 75, .04), transparent 46%),
    var(--v81-panel);
}

.wkndr-evidence-snapshot span,
.wkndr-evidence-snapshot small {
  font-family: var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.wkndr-evidence-snapshot span {
  margin-bottom: auto;
  color: var(--v81-lime);
  font-size: 7px;
}

.wkndr-evidence-snapshot strong {
  display: block;
  font-size: clamp(29px, 3.2vw, 46px);
  font-weight: 500;
  letter-spacing: -.045em;
}

.wkndr-evidence-snapshot small {
  display: block;
  max-width: 190px;
  margin-top: 7px;
  color: #777770;
  font-size: 6px;
  line-height: 1.55;
}

.wkndr-evidence-browser {
  padding: clamp(14px, 2.4vw, 28px);
  border: 1px solid var(--v81-line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 0%, rgba(214, 255, 75, .03), transparent 29rem),
    #0a0a09;
}

.wkndr-evidence-tabs {
  display: flex;
  gap: 8px;
  padding-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.wkndr-evidence-tabs::-webkit-scrollbar {
  display: none;
}

.wkndr-evidence-tabs button {
  min-height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0 14px;
  border: 1px solid var(--v81-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .012);
  color: #85857e;
  font: 8px var(--mono);
  letter-spacing: .065em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.wkndr-evidence-tabs button span {
  color: #5d5d57;
}

.wkndr-evidence-tabs button.is-active {
  border-color: var(--v81-lime);
  background: var(--v81-lime);
  color: #0b0b09;
}

.wkndr-evidence-tabs button.is-active span {
  color: rgba(11, 11, 9, .55);
}

.wkndr-evidence-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.wkndr-evidence-panel[hidden] {
  display: none !important;
}

.wkndr-evidence-card {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--v81-line);
  border-radius: 16px;
  background: #090909;
  text-align: left;
  cursor: zoom-in;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
}

.wkndr-evidence-card--feature {
  border-color: rgba(214, 255, 75, .25);
}

.wkndr-evidence-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 709 / 1536;
  object-fit: contain;
  background: #050505;
}

.wkndr-evidence-card > span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  padding: 38px 12px 12px;
  background: linear-gradient(transparent, rgba(4, 4, 4, .94));
  pointer-events: none;
}

.wkndr-evidence-card strong,
.wkndr-evidence-card small {
  display: block;
}

.wkndr-evidence-card strong {
  color: #f1efe9;
  font-size: 11px;
  font-weight: 600;
}

.wkndr-evidence-card small {
  margin-top: 4px;
  color: #a2a19b;
  font: 6px/1.5 var(--mono);
  letter-spacing: .035em;
  text-transform: uppercase;
}

.wkndr-evidence .published-proof-note {
  max-width: 760px;
  margin: 18px 0 0;
}

/* Keep portrait evidence inspectable without filling a wide desktop. */
.wkndr-evidence .proof-lightbox-inner {
  width: min(92vw, 580px);
  max-height: 90dvh;
}

.wkndr-evidence .proof-lightbox-inner img {
  width: auto;
  max-width: 100%;
  max-height: calc(90dvh - 52px);
  object-fit: contain;
  margin-inline: auto;
}

/* ---------- NOW.HERE case-study framing ---------- */
.nowhere-case-intro {
  padding: clamp(24px, 4.5vw, 58px);
  border: 1px solid var(--v81-line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 8%, rgba(214, 255, 75, .045), transparent 34%),
    #0a0a09;
}

.nowhere-case-kicker,
.nowhere-attribution strong,
.nowhere-case-close > div > span {
  color: var(--v81-lime);
  font: 8px var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nowhere-case-intro-copy h2 {
  max-width: 950px;
  margin-top: 20px;
  font-size: clamp(42px, 6.8vw, 92px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .94;
}

.nowhere-case-intro-copy h2 em {
  color: #777770;
  font-style: normal;
}

.nowhere-case-intro-copy > p {
  max-width: 720px;
  margin-top: 24px;
  color: #9d9c95;
  font-size: 13px;
  line-height: 1.75;
}

.nowhere-ownership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 45px;
  border-top: 1px solid var(--v81-line);
  border-left: 1px solid var(--v81-line);
}

.nowhere-ownership-grid article {
  min-height: 172px;
  padding: 20px;
  border-right: 1px solid var(--v81-line);
  border-bottom: 1px solid var(--v81-line);
}

.nowhere-ownership-grid article > span {
  color: var(--v81-lime);
  font: 8px var(--mono);
}

.nowhere-ownership-grid strong,
.nowhere-ownership-grid small {
  display: block;
}

.nowhere-ownership-grid strong {
  margin-top: 44px;
  font-size: 14px;
  font-weight: 500;
}

.nowhere-ownership-grid small {
  margin-top: 8px;
  color: #777770;
  font-size: 9px;
  line-height: 1.55;
}

.nowhere-impact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--v81-line);
  border-radius: 18px;
  background: var(--v81-line);
}

.nowhere-impact-strip div {
  padding: 18px;
  background: var(--v81-panel);
}

.nowhere-impact-strip strong,
.nowhere-impact-strip span {
  display: block;
}

.nowhere-impact-strip strong {
  color: var(--v81-lime);
  font-size: clamp(25px, 2.9vw, 39px);
  font-weight: 500;
  letter-spacing: -.04em;
}

.nowhere-impact-strip span {
  margin-top: 5px;
  color: #777770;
  font: 7px var(--mono);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nowhere-attribution {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--v81-line);
  color: #74746e;
  font-size: 10px;
  line-height: 1.75;
}

.nowhere-attribution strong {
  margin-right: 8px;
}

.nowhere-case-close {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 80px;
  padding: 28px;
  border: 1px solid var(--v81-lime-line);
  border-radius: 22px;
  background: var(--v81-lime-soft);
}

.nowhere-case-close strong,
.nowhere-case-close small {
  display: block;
}

.nowhere-case-close strong {
  margin-top: 8px;
  font-size: clamp(20px, 2.7vw, 35px);
  font-weight: 500;
}

.nowhere-case-close small {
  margin-top: 6px;
  color: #8e8e87;
  font-size: 9px;
}

/* ---------- creator collaboration + editing range ---------- */
.creator-collaboration-card {
  grid-column: 1 / -1;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid var(--v81-line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 85% 16%, rgba(214, 255, 75, .07), transparent 24rem),
    linear-gradient(140deg, #141412, #0c0c0b 65%);
  cursor: default;
}

.creator-collaboration-top,
.creator-collaboration-body,
.creator-collaboration-link {
  display: flex;
  justify-content: space-between;
  gap: 26px;
}

.creator-collaboration-top {
  color: #73736d;
  font: 8px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.creator-collaboration-top span {
  color: var(--v81-lime);
}

.creator-collaboration-body {
  align-items: end;
  margin-top: auto;
  padding-top: 78px;
}

.creator-collaboration-body > div {
  max-width: 650px;
}

.creator-collaboration-kicker {
  color: #76766f;
  font: 8px var(--mono);
  letter-spacing: .1em;
}

.creator-collaboration-body h3 {
  margin-top: 12px;
  font-size: clamp(43px, 7vw, 95px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.065em;
}

.creator-collaboration-body > div p {
  margin-top: 12px;
  color: #9a9992;
  font: 9px var(--mono);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.creator-collaboration-body > p {
  max-width: 440px;
  color: #909089;
  font-size: 12px;
  line-height: 1.75;
}

.creator-collaboration-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 34px;
}

.creator-collaboration-tags span {
  padding: 7px 9px;
  border: 1px solid var(--v81-line);
  color: #8b8b84;
  font: 7px var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.creator-collaboration-link {
  align-items: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--v81-line);
  color: #c6c5bf;
  font: 8px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.editing-range {
  padding: 165px 0;
  border-top: 1px solid var(--v81-line);
}

.editing-range-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: end;
  margin-top: 66px;
}

.editing-range-intro > div > span {
  color: var(--v81-lime);
  font: 8px var(--mono);
  letter-spacing: .1em;
}

.editing-range-intro h2 {
  max-width: 840px;
  margin-top: 16px;
  font-size: clamp(45px, 6vw, 84px);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.06em;
}

.editing-range-intro h2 em {
  color: #777770;
  font-style: normal;
}

.editing-range-intro > p {
  padding-top: 25px;
  border-top: 1px solid var(--v81-line);
  color: #94948d;
  font-size: 13px;
  line-height: 1.75;
}

.editing-range-tabs {
  display: flex;
  gap: 8px;
  margin-top: 58px;
  padding-bottom: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.editing-range-tabs::-webkit-scrollbar {
  display: none;
}

.editing-range-tabs button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--v81-line);
  border-radius: 999px;
  background: transparent;
  color: #82827b;
  font: 8px var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.editing-range-tabs button.is-active {
  border-color: var(--v81-lime);
  background: var(--v81-lime);
  color: #0c0c0a;
}

.editing-range-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  border-top: 1px solid var(--v81-line);
  border-left: 1px solid var(--v81-line);
  background: var(--v81-line);
}

.editing-range-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-right: 1px solid var(--v81-line);
  border-bottom: 1px solid var(--v81-line);
  background: var(--v81-panel);
  transition: opacity .22s ease, transform .28s var(--v81-ease), background .22s ease, box-shadow .22s ease;
}

.editing-range-card.is-filter-hidden {
  display: none;
}

.editing-range-card > span {
  align-self: flex-end;
  color: #5f5f59;
  font: 8px var(--mono);
}

.editing-range-card > small {
  margin-top: auto;
  color: var(--v81-lime);
  font: 7px var(--mono);
  letter-spacing: .09em;
}

.editing-range-card h3 {
  margin-top: 10px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.editing-range-card p {
  margin-top: 14px;
  color: #85857e;
  font-size: 10px;
  line-height: 1.65;
}

.editing-range-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 20px;
}

.editing-range-card b {
  padding: 5px 6px;
  border: 1px solid var(--v81-line);
  color: #777770;
  font: 6px var(--mono);
  letter-spacing: .055em;
  text-transform: uppercase;
}

.editing-collaboration-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--v81-lime-line);
  border-radius: 20px;
  background: var(--v81-lime-soft);
}

.editing-collaboration-rail span,
.editing-collaboration-rail strong,
.editing-collaboration-rail small {
  display: block;
}

.editing-collaboration-rail span {
  color: var(--v81-lime);
  font: 7px var(--mono);
  letter-spacing: .08em;
}

.editing-collaboration-rail strong {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 500;
}

.editing-collaboration-rail small {
  margin-top: 3px;
  color: #7e7e77;
  font-size: 9px;
}

/* ---------- clearer service lanes ---------- */
.service {
  position: relative;
  overflow: hidden;
}

.service::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--service-accent, var(--v81-lime));
  transform: scaleY(.18);
  transform-origin: top;
  opacity: .55;
  transition: transform .35s var(--v81-ease), opacity .25s ease;
}

.service--editing { --service-accent: #f1efe9; }
.service--smm { --service-accent: var(--v81-lime); }
.service--hybrid { --service-accent: #a6bcff; }

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding: 11px 14px;
  border: 1px solid var(--v81-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .012);
  color: #aaa9a2;
  font: 8px var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

/* ---------- lead dialog ---------- */
body.lead-dialog-open {
  overflow: hidden;
}

.lead-dialog {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}

.lead-dialog.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lead-dialog-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 3, 3, .82);
  -webkit-backdrop-filter: blur(16px) saturate(.75);
  backdrop-filter: blur(16px) saturate(.75);
  cursor: default;
}

.lead-dialog-panel {
  position: relative;
  width: min(100%, 980px);
  max-height: calc(100dvh - 48px);
  overflow: auto;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--v81-line-strong);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 4%, rgba(214, 255, 75, .055), transparent 26rem),
    #0d0d0c;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .68);
  transform: translateY(16px) scale(.985);
  transition: transform .35s var(--v81-ease);
  scrollbar-width: thin;
  scrollbar-color: rgba(214, 255, 75, .35) transparent;
}

.lead-dialog.is-open .lead-dialog-panel {
  transform: translateY(0) scale(1);
}

.lead-dialog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--v81-line);
}

.lead-dialog-head span {
  color: var(--v81-lime);
  font: 8px var(--mono);
  letter-spacing: .1em;
}

.lead-dialog-head h2 {
  margin-top: 9px;
  font-size: clamp(37px, 5vw, 66px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.055em;
}

.lead-dialog-head p {
  max-width: 600px;
  margin-top: 12px;
  color: #8f8f88;
  font-size: 11px;
  line-height: 1.65;
}

.lead-dialog-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--v81-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .018);
  color: #a6a69f;
  font-size: 22px;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.lead-form {
  margin-top: 28px;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lead-form label {
  display: block;
}

.lead-form label > span {
  display: block;
  margin: 0 0 8px 2px;
  color: #8b8b84;
  font: 7px var(--mono);
  letter-spacing: .075em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--v81-line);
  border-radius: 12px;
  background: #121210;
  color: var(--v81-text);
  font-size: 12px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.lead-form input,
.lead-form select {
  min-height: 48px;
  padding: 0 13px;
}

.lead-form textarea {
  min-height: 138px;
  padding: 13px;
  resize: vertical;
  line-height: 1.6;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #5f5f59;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(214, 255, 75, .55);
  background: #151513;
  box-shadow: 0 0 0 3px rgba(214, 255, 75, .045);
  outline: none;
}

.lead-field-help {
  margin-top: 2px;
  color: #a3a39a;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
}

.lead-form-wide {
  grid-column: 1 / -1;
}

.lead-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.lead-form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--v81-line);
}

.lead-form-foot > p {
  max-width: 570px;
  color: #a3a39a;
  font-size: 11px;
  line-height: 1.65;
}

.lead-submit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.lead-form-status {
  min-height: 20px;
  margin-top: 14px;
  color: var(--v81-lime);
  font: 12px/1.65 var(--mono);
  letter-spacing: .045em;
}

.lead-form-status.is-error {
  color: #ff8f86;
}

.lead-form-status[data-state="sending"] {
  color: #b5b5ac;
}

.lead-submit:disabled {
  opacity: .65;
  cursor: wait;
  transform: none !important;
  box-shadow: none !important;
}

.lead-form-fallback {
  margin-top: 8px;
  color: #a3a39a;
  font-size: 12px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.lead-form-fallback a {
  color: var(--v81-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-form-fallback a:focus-visible {
  outline: 2px solid var(--v81-lime);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .lead-form-fallback a:hover { color: var(--v81-lime); }
}

/* ---------- matching custom controls ---------- */
.portfolio-video-controls,
.artist-video-controls,
.wkndr-standalone-controls,
.wkndr-carousel-controls {
  border-color: rgba(241, 239, 233, .15) !important;
  background: rgba(8, 8, 7, .76) !important;
  -webkit-backdrop-filter: blur(15px) saturate(.8);
  backdrop-filter: blur(15px) saturate(.8);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .42), 0 0 0 1px rgba(214, 255, 75, .025);
}

.portfolio-video-controls,
.artist-video-controls,
.wkndr-standalone-controls {
  transition: opacity .26s ease, transform .3s var(--v81-ease), visibility .26s ease !important;
}

.wkndr-carousel-controls {
  position: absolute;
  z-index: 12;
  left: 10px;
  top: 10px;
  display: flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid;
  border-radius: 999px;
  opacity: .98;
  transform: translateY(0);
  transition: opacity .24s ease, transform .28s var(--v81-ease), visibility .24s ease;
}

.wkndr-media-frame.controls-hidden .wkndr-carousel-controls {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-5px) scale(.98);
}

.wkndr-carousel-control {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, .82);
  cursor: pointer;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.wkndr-carousel-controls .wkndr-sound-toggle {
  position: relative;
  inset: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .82);
  font: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.wkndr-carousel-control svg,
.wkndr-standalone-control svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wkndr-carousel-control svg .fill,
.wkndr-standalone-control svg .fill {
  fill: currentColor;
  stroke: none;
}

.wkndr-carousel-controls .wkndr-carousel-control.is-on {
  border-color: transparent;
  background: transparent;
  color: var(--v81-lime);
}

.wkndr-standalone-controls {
  position: absolute;
  z-index: 14;
  left: 50%;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid;
  border-radius: 999px;
  transform: translate(-50%, 0);
  opacity: 1;
}

.wkndr-video-phone.controls-hidden .wkndr-standalone-controls {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 7px) scale(.985);
}

.wkndr-video-card:not(.is-active) .wkndr-standalone-controls {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.wkndr-standalone-control {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, .86);
  cursor: pointer;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.wkndr-volume-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.wkndr-volume-panel {
  width: 0;
  opacity: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: width .24s ease, opacity .18s ease;
}

.wkndr-volume-wrap.is-open .wkndr-volume-panel {
  width: 78px;
  opacity: 1;
}

.wkndr-volume-slider {
  width: 66px;
  height: 2px;
  margin: 0 7px 0 2px;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 999px;
  background: linear-gradient(to right, var(--v81-lime) 0%, var(--v81-lime) var(--volume-level, 72%), rgba(255, 255, 255, .2) var(--volume-level, 72%), rgba(255, 255, 255, .2) 100%);
}

.wkndr-volume-slider::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: var(--v81-text);
}

.wkndr-volume-slider::-moz-range-thumb {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: var(--v81-text);
}

.wkndr-control-divider {
  width: 1px;
  height: 17px;
  background: rgba(255, 255, 255, .12);
}

/* Native controls are replaced only after the accessible custom controls exist. */
.wkndr-video-phone.has-custom-controls video::-webkit-media-controls {
  display: none !important;
}

/* ---------- true desktop hover only ---------- */
@media (hover: hover) and (pointer: fine) {
  .nav-cta:hover,
  .hero-service-chip:hover,
  .service-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(214, 255, 75, .48);
    background: rgba(214, 255, 75, .055);
    color: var(--v81-lime);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2), 0 0 20px rgba(214, 255, 75, .04);
  }

  .editing-range-card:hover {
    z-index: 2;
    transform: translateY(-4px) scale(1.006);
    background: #171714;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .32), 0 0 0 1px rgba(214, 255, 75, .18), 0 0 26px rgba(214, 255, 75, .055);
  }

  .service:hover::after {
    transform: scaleY(1);
    opacity: 1;
  }

  .lead-dialog-close:hover,
  .wkndr-carousel-control:hover,
  .wkndr-standalone-control:hover {
    border-color: rgba(214, 255, 75, .45);
    background: rgba(214, 255, 75, .07);
    color: var(--v81-lime);
  }

  .lead-dialog-close:hover,
  .wkndr-carousel-control:hover,
  .wkndr-standalone-control:hover {
    transform: scale(1.04);
  }
}

/* ---------- laptops / tablets ---------- */
@media (max-width: 1120px) {
  .wkndr-evidence-panel,
  .editing-range-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nowhere-ownership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-cta {
    padding: 9px 12px;
  }

  .hero {
    min-height: auto;
    padding: 96px 0 88px;
  }

  .hero h1 {
    font-size: clamp(47px, 12.7vw, 88px);
  }

  .wkndr-evidence-snapshot,
  .nowhere-impact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wkndr-evidence-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
  }

  .wkndr-evidence-card {
    border-radius: 13px;
  }

  .nowhere-case-intro {
    border-radius: 22px;
  }

  .nowhere-case-intro-copy h2 {
    font-size: clamp(38px, 10vw, 68px);
  }

  .creator-collaboration-body,
  .editing-range-intro {
    grid-template-columns: 1fr;
  }

  .creator-collaboration-body {
    display: grid;
    align-items: start;
    padding-top: 56px;
  }

  .editing-range {
    padding: 120px 0;
  }

  .editing-range-intro {
    gap: 34px;
  }

  .editing-range-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editing-range-card {
    min-height: 285px;
  }

  .lead-dialog {
    padding: 14px;
  }

  .lead-dialog-panel {
    max-height: calc(100dvh - 28px);
    border-radius: 22px;
  }
}

/* ---------- phones ---------- */
@media (max-width: 620px) {
  body::before {
    opacity: .12;
    background-size: 46px 46px;
  }

  .hero-service-paths {
    display: grid;
  }

  .hero-service-chip {
    justify-content: space-between;
  }

  .wkndr-evidence-snapshot {
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
  }

  .wkndr-evidence-snapshot article {
    min-height: 124px;
    padding: 15px;
  }

  .wkndr-evidence-browser {
    padding: 11px;
    border-radius: 18px;
  }

  .wkndr-evidence-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .wkndr-evidence-card > span {
    padding: 32px 9px 9px;
  }

  .wkndr-evidence-card strong {
    font-size: 9px;
  }

  .wkndr-evidence-card small {
    font-size: 5.5px;
  }

  .nowhere-ownership-grid,
  .nowhere-impact-strip {
    grid-template-columns: 1fr;
  }

  .nowhere-ownership-grid article {
    min-height: auto;
    padding: 17px;
  }

  .nowhere-ownership-grid strong {
    margin-top: 22px;
  }

  .nowhere-case-close {
    grid-template-columns: 1fr;
    margin-top: 58px;
    padding: 20px;
  }

  .nowhere-case-close .work-link {
    width: 100%;
  }

  .creator-collaboration-card {
    min-height: 430px;
    border-radius: 20px;
  }

  .creator-collaboration-top,
  .creator-collaboration-body {
    gap: 18px;
  }

  .creator-collaboration-top small {
    max-width: 118px;
    text-align: right;
  }

  .creator-collaboration-body h3 {
    font-size: clamp(44px, 16vw, 68px);
  }

  .editing-range {
    padding: 100px 0;
  }

  .editing-range-intro {
    margin-top: 46px;
  }

  .editing-range-intro h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .editing-range-grid {
    grid-template-columns: 1fr;
  }

  .editing-range-card {
    min-height: 260px;
  }

  .editing-collaboration-rail,
  .lead-form-foot {
    align-items: stretch;
    flex-direction: column;
  }

  .editing-collaboration-rail .button,
  .lead-submit {
    justify-content: space-between;
    width: 100%;
  }

  .lead-dialog {
    padding: 0;
  }

  .lead-dialog-panel {
    width: 100%;
    height: 100dvh;
    max-height: none;
    padding: 22px 18px 32px;
    border: 0;
    border-radius: 0;
  }

  .lead-dialog-head {
    gap: 14px;
  }

  .lead-dialog-head h2 {
    font-size: 40px;
  }

  .lead-dialog-close {
    width: 38px;
    height: 38px;
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
  }

  .lead-form-wide {
    grid-column: auto;
  }

  .wkndr-standalone-controls {
    bottom: 13px;
    gap: 2px;
    padding: 4px;
  }

  .wkndr-standalone-control {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}

/* Touch must never retain desktop hover transforms or invisible controls. */
@media (hover: none), (pointer: coarse) {
  .hero-service-chip,
  .editing-range-card,
  .service-cta,
  .wkndr-evidence-card {
    transform: none !important;
    box-shadow: none !important;
  }

  .wkndr-carousel-controls,
  .wkndr-media-frame.controls-hidden .wkndr-carousel-controls {
    opacity: .92;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .wkndr-video-phone.controls-hidden .wkndr-standalone-controls {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-service-chip,
  .wkndr-evidence-card,
  .editing-range-card,
  .service::after,
  .service-cta,
  .lead-dialog,
  .lead-dialog-panel,
  .portfolio-video-controls,
  .artist-video-controls,
  .wkndr-standalone-controls,
  .wkndr-carousel-controls {
    transition: none !important;
    animation: none !important;
  }
}
