/*
 * @license
 * MyFonts Webfont Build ID 612283
 *
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are
 * explicitly restricted from using the Licensed Webfonts(s).
 *
 * You may obtain a valid license from one of MyFonts official sites.
 * http://www.fonts.com
 * http://www.myfonts.com
 * http://www.linotype.com
 */

/*
Theme Name: Directive Child
Template: hello-elementor
*/

:root {
  --bg: #070707;
  --text: #f4f4f4;
  --muted: rgba(244,244,244,0.68);
  --accent: #b88a5f;
}

/* ========== FONTS ========== */
@font-face {
  font-family: 'Neue Haas Grotesk Text';
  src: url('fonts/NeueHaasGroteskTextPro55Roman.woff2') format('woff2'),
       url('fonts/NeueHaasGroteskTextPro55Roman.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk Text';
  src: url('fonts/NeueHaasGroteskTextPro75Bold.woff2') format('woff2'),
       url('fonts/NeueHaasGroteskTextPro75Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display';
  src: url('fonts/NeueHaasGroteskDisplayPro75Bold.woff2') format('woff2'),
       url('fonts/NeueHaasGroteskDisplayPro75Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ========== GLOBAL ========== */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: var(--bg) !important;
  color: var(--text) !important;
  font-family: "Neue Haas Grotesk Text", system-ui, sans-serif;
  overscroll-behavior: none;
}

a { color: var(--text); }
a:hover { color: var(--accent); }

@supports (padding: env(safe-area-inset-bottom)) {
  body {
    padding-bottom: env(safe-area-inset-bottom);
    background-color: var(--bg);
  }
}

.site-footer,
.site-header {
  display: none !important;
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* ========== SCREEN STRUCTURE ========== */
#directive-work-root {
  width: 100%;
  height: 100%;
}

.screens {
  height: 100vh;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: auto;
  overscroll-behavior-y: contain;
  position: relative;
}

/* desktop retains snap; mobile uses JS-driven smooth scroll */
@media (min-width: 701px) {
  .screens {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
  }
}

.screen {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
}

.screen-content {
  width: 100%;
  display: flex !important;
  flex-direction: column !important;
  column-count: 1 !important;
  column-gap: 0 !important;
}

/* ========== BOTTOM GLOW ========== */
.homepage-glow {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 55%;
  background: radial-gradient(ellipse at 50% 100%, rgba(184,138,95,0.13) 0%, rgba(184,138,95,0.05) 38%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ========== SCROLL PROGRESS LINE ========== */
.scroll-line {
  position: fixed;
  left: 36px;
  top: 0;
  width: 1px;
  height: 100vh;
  background: rgba(244,244,244,0.06);
  pointer-events: none;
  z-index: 50;
}

.scroll-fill {
  position: fixed;
  left: 36px;
  top: 0;
  width: 1px;
  height: 0%;
  background: rgba(244,244,244,0.22);
  pointer-events: none;
  z-index: 51;
  transition: height 0.15s linear;
}

/* ========== SCREEN 1 ========== */
.screen-1 {
  display: flex;
  justify-content: center;
  text-align: center;
  cursor: none;
  padding: 0 6vw;
}

.screen-1 h1 {
  font-family: 'Neue Haas Grotesk Display', sans-serif;
  font-size: clamp(72px, 14vw, 160px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 0.95;
  opacity: 0;
  transform: translateY(6px);
  transition:
    letter-spacing 1.6s cubic-bezier(.2,.8,.2,1),
    opacity 0s,
    transform 0s;
}

.screen-1 h1.dw-entered {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s cubic-bezier(.2,.8,.2,1),
    transform 0.8s cubic-bezier(.2,.8,.2,1),
    letter-spacing 1.6s cubic-bezier(.2,.8,.2,1);
}

.screen-1 .subline {
  font-size: clamp(13px, 2.2vw, 24px);
  letter-spacing: 0.18em;
  text-transform: none;
  margin-top: 32px;
  color: rgba(244,244,244,0.42);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0s, transform 0s;
}

.screen-1 .subline.dw-entered {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s cubic-bezier(.2,.8,.2,1) 0.3s,
    transform 0.6s cubic-bezier(.2,.8,.2,1) 0.3s;
}

/* ========== LIVE WATCH ENTRY ========== */
.live-watch {
  position: absolute;
  bottom: clamp(52px, 7vh, 72px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 88%;
  overflow: hidden;
}

.live-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(184,138,95,0.45);
  flex-shrink: 0;
  animation: dw-pulse 3.2s ease-in-out infinite;
}

@keyframes dw-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.9; }
}

.live-text {
  font-family: 'Neue Haas Grotesk Text', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.13em;
  color: rgba(244,244,244,0.38);
  text-transform: lowercase;
  text-decoration: none;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1), color 1.2s ease;
}

.live-text.live-visible {
  opacity: 1;
  transition: opacity 1.4s cubic-bezier(.4,0,.2,1);
}

.live-text:hover {
  color: #b88a5f;
}

/* ========== LOCAL TIME — fixed, visible on all screens, desktop only ========== */
.local-time {
  position: fixed;
  bottom: clamp(52px, 7vh, 72px);
  right: clamp(24px, 4vw, 48px);
  font-family: 'Neue Haas Grotesk Text', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(244,244,244,0.36);
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  user-select: none;
  z-index: 60;
}

/* ========== BLOCKCHAIN REF ========== */
.blockchain-ref {
  position: absolute;
  top: clamp(24px, 3vh, 36px);
  right: clamp(24px, 4vw, 48px);
  font-family: 'Neue Haas Grotesk Text', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(244,244,244,0.38);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
  transition: color 1.2s ease;
  cursor: none;
}

.blockchain-ref:hover {
  color: #b88a5f;
}

.screen-1 a,
.screen-1 .live-text,
.screen-1 .blockchain-ref {
  cursor: none;
}

/* ========== CURSOR RING — screen 1 only ========== */
.cursor-ring {
  position: fixed;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(244,244,244,0.32);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* ========== SCREENS 2-5: cursor none ========== */
.screen-2,
.screen-3,
.screen-4,
.screen-5 {
  cursor: none;
}

/* ========== SCREENS 2-5 layout ========== */
.screen-2,
.screen-3,
.screen-4,
.screen-5,
.screen-6 {
  padding-left: 18vw;
  padding-right: 8vw;
}

.screen-2 .screen-content,
.screen-3 .screen-content,
.screen-4 .screen-content,
.screen-5 .screen-content,
.screen-6 .screen-content {
  gap: 18px !important;
}

.screen-2 p,
.screen-3 p,
.screen-4 p,
.screen-5 p {
  font-size: clamp(22px, 2.6vw, 34px);
  margin: 0;
  color: #f4f4f4;
}

.tight {
  font-family: 'Neue Haas Grotesk Text', system-ui, sans-serif;
  font-weight: 700 !important;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.spaced {
  font-family: 'Neue Haas Grotesk Text', system-ui, sans-serif;
  font-weight: 400 !important;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

/* ========== MOBILE SCREEN CONTENT FADE ========== */
/* desktop: always fully visible */
.screen-fade {
  opacity: 1;
  transform: translateY(0);
}

/* mobile: start dimmed, animate in on arrival */
@media (max-width: 700px) {
  .screen-fade {
    opacity: 0.3;
    transform: translateY(8px);
    transition:
      opacity 0.38s cubic-bezier(.2,.8,.2,1),
      transform 0.38s cubic-bezier(.2,.8,.2,1);
  }

  .screen-fade.fade-in {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== PER-LINE STAGGER ========== */
.dw-line {
  display: block;
  opacity: 0;
}

.dw-line.dw-line-visible {
  animation: dw-line-in 0.9s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes dw-line-in {
  to {
    opacity: 1;
  }
}

/* ========== STRUCTURAL MOMENT OVERLAY ========== */
.structural-overlay {
  position: fixed;
  inset: 0;
  background: #070707;
  opacity: 0;
  pointer-events: none;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s cubic-bezier(.4,0,.2,1);
}

.structural-overlay.structural-blackout {
  opacity: 1;
  pointer-events: auto;
}

.structural-line {
  font-family: 'Neue Haas Grotesk Text', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 22px);
  letter-spacing: 0.32em;
  color: rgba(244,244,244,0.58);
  text-transform: lowercase;
  text-align: center;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(.4,0,.2,1);
}

.structural-line.structural-line-visible {
  opacity: 1;
}

/* ========== SCREEN 6 BLOCK DISSOLVE ========== */
.screen-6-content {
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(.4,0,.2,1);
}

.screen-6-content.s6-visible {
  opacity: 1;
}

/* ========== SCREEN 6 CROSSHAIR ========== */
.crosshair-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 20px;
  height: 20px;
}

.crosshair-h {
  position: absolute;
  width: 20px;
  height: 1px;
  background: rgba(244,244,244,0.40);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.crosshair-v {
  position: absolute;
  width: 1px;
  height: 20px;
  background: rgba(244,244,244,0.40);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.crosshair-dot {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(244,244,244,0.40);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.screen-6-active,
.screen-6-active *,
.screen-6-active a,
.screen-6-active a:link,
.screen-6-active a:visited,
.screen-6-active a:hover,
.screen-6-active a:active {
  cursor: none !important;
}

.screen-6,
.screen-6 *,
.screen-6 a,
.screen-6 a:link,
.screen-6 a:visited,
.screen-6 a:hover,
.screen-6 a:active,
.screen-6 .access-line,
.screen-6 .access-line:hover,
.screen-6 .engage-line,
.screen-6 .engage-line:hover {
  cursor: none !important;
}

/* ========== SCREEN 6 ========== */
.screen-6 {
  cursor: none;
}

.screen-6 p.tight {
  font-size: clamp(17px, 2vw, 26px);
  color: #f4f4f4;
  font-weight: 700 !important;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}

.screen-6 p.spaced {
  font-size: clamp(17px, 2vw, 26px);
  color: #f4f4f4;
  font-weight: 400 !important;
  line-height: 1.55;
  letter-spacing: 0.01em;
  margin: 0;
}

.access-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: clamp(28px, 4vh, 48px);
  gap: 0;
}

.access-line {
  font-family: 'Neue Haas Grotesk Text', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.8vw, 22px);
  letter-spacing: 0.06em;
  color: rgba(244,244,244,0.62);
  text-decoration: none;
  text-transform: lowercase;
  line-height: 1;
  padding: 11px 0;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition:
    color 0.9s cubic-bezier(.2,.8,.2,1),
    border-bottom-color 0.9s cubic-bezier(.2,.8,.2,1);
}

.access-line:hover {
  color: rgba(244,244,244,0.92);
  border-bottom-color: rgba(244,244,244,0.12);
}

.access-divider {
  width: 20px;
  height: 1px;
  background: rgba(244,244,244,0.08);
  margin: 18px 0;
}

.engage-line.access-line {
  color: rgba(184,138,95,0.52);
  letter-spacing: 0.1em;
}

.engage-line.access-line:hover {
  color: #b88a5f;
  border-bottom-color: rgba(184,138,95,0.22);
}

.dw-trademark {
  margin-top: clamp(44px, 7vh, 68px);
  font-size: 11px;
  color: rgba(244,244,244,0.15);
  letter-spacing: 0.1em;
  line-height: 2;
}

/* ========== ELITE INQUIRY LINK ========== */
.engagements-line {
  font-family: 'Neue Haas Grotesk Text', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  font-size: clamp(18px, 2.1vw, 22px);
  color: rgba(244,244,244,0.88);
  line-height: 1.5;
}

.engagements-line a.cross-link {
  display: inline-block;
  color: rgba(244,244,244,0.88);
  text-decoration: none;
  opacity: 1;
  margin-left: 0.05em;
  transition: opacity 0.6s ease, color 0.6s ease;
}

.engagements-line a.cross-link .cross {
  font-size: 0.50em;
  display: inline-block;
  transform: translateY(-0.60em);
  opacity: 0.65;
  transition:
    opacity 0.9s cubic-bezier(.2,.8,.2,1),
    transform 0.9s cubic-bezier(.2,.8,.2,1),
    color 0.9s cubic-bezier(.2,.8,.2,1);
}

.engagements-line a.cross-link:hover .cross {
  opacity: 1;
  transform: translateY(-0.45em);
  color: var(--accent) !important;
}

/* ========== ACCESS PAGE ========== */
#directive-access-root {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.access {
  width: 100%;
  padding-left: 18vw;
  padding-right: 8vw;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.access-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.access-content p {
  font-size: clamp(22px, 2.6vw, 34px);
  margin: 0;
  color: rgba(244,244,244,0.92);
}

.access .email {
  display: inline-block;
  width: auto;
  align-self: flex-start;
  max-width: fit-content;
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: 0.12em;
  color: var(--text);
  text-decoration: none;
  border-left: 2px solid rgba(244,244,244,0.25);
  padding-left: 18px;
  margin-top: 8px;
  opacity: 0;
  transition:
    color 0.9s cubic-bezier(.2,.8,.2,1),
    border-left-color 0.9s cubic-bezier(.2,.8,.2,1),
    opacity 1.2s cubic-bezier(.2,.8,.2,1);
}

.access .email.fade-in-on-scroll { opacity: 1; }

.access .email:hover {
  color: var(--accent);
  border-left-color: var(--accent);
}

/* ========== PRIVACY PAGE ========== */
#directive-privacy-root {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.privacy {
  width: 100%;
  padding-left: 18vw;
  padding-right: 8vw;
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.privacy-content p {
  font-size: clamp(22px, 2.6vw, 34px);
  margin: 0;
  color: rgba(244,244,244,0.92);
}

.privacy .email {
  display: inline-block;
  width: auto;
  align-self: flex-start;
  max-width: fit-content;
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: 0.12em;
  color: var(--text);
  text-decoration: none;
  border-left: 2px solid rgba(244,244,244,0.25);
  padding-left: 18px;
  margin-top: 8px;
  transition: color 0.6s ease, border-left-color 0.6s ease;
}

.privacy .email:hover {
  color: var(--accent);
  border-left-color: var(--accent);
}

/* ========== TERMS PAGE ========== */
#directive-terms-root {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.terms {
  width: 100%;
  padding-left: 18vw;
  padding-right: 8vw;
}

.terms-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.terms-content p {
  font-size: clamp(22px, 2.6vw, 34px);
  margin: 0;
  color: rgba(244,244,244,0.92);
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  .screens { scroll-behavior: auto; }
  .scroll-fill { transition: none; }
  .screen-1 h1,
  .screen-1 .subline {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .live-dot { animation: none; opacity: 0.5; }
  .live-text,
  .live-text.live-visible { transition: none; opacity: 1; }
  .screen-fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ========== CONTEXT LINK ========== */
.context-link {
  display: inline-block;
  margin-top: clamp(40px, 8vh, 80px);
  text-decoration: none;
}

.context-link .asterisk {
  font-size: 0.85em;
  color: rgba(244,244,244,0.5);
  opacity: 0.65;
  transition:
    color 0.9s cubic-bezier(.2,.8,.2,1),
    opacity 0.9s cubic-bezier(.2,.8,.2,1);
}

.context-link:hover .asterisk {
  color: var(--accent);
  opacity: 1;
}

/* ========== CONTEXT PAGE ========== */
#directive-context-root {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.context {
  width: 100%;
  padding-left: 18vw;
  padding-right: 8vw;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.context-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.context-content p {
  font-size: clamp(22px, 2.6vw, 34px);
  margin: 0;
  color: rgba(244,244,244,0.92);
}

.context-content .tight {
  font-family: 'Neue Haas Grotesk Text', system-ui, sans-serif;
  font-weight: 700 !important;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.context-content .spaced {
  font-family: 'Neue Haas Grotesk Text', system-ui, sans-serif;
  font-weight: 400 !important;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.context .email {
  display: inline-block;
  width: auto;
  align-self: flex-start;
  max-width: fit-content;
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: 0.12em;
  color: var(--text);
  text-decoration: none;
  border-left: 2px solid rgba(244,244,244,0.25);
  padding-left: 18px;
  margin-top: 8px;
  transition:
    color 0.9s cubic-bezier(.2,.8,.2,1),
    border-left-color 0.9s cubic-bezier(.2,.8,.2,1);
}

.context .email:hover {
  color: var(--accent);
  border-left-color: var(--accent);
}

/* ========== INLINE LINK ========== */
.inline-link {
  color: rgba(244,244,244,0.68);
  text-decoration: none;
  transition: color 0.9s cubic-bezier(.2,.8,.2,1);
}

.inline-link:hover { color: var(--accent); }

/* ========== WRITING PAGE ========== */
#directive-writing-root {
  width: 100%;
  min-height: 100vh;
  background-color: var(--text);
  color: var(--bg);
}

.writing-page {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 12vh 6vw 10vh 6vw;
}

.writing-header {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(7,7,7,0.15);
}

.writing-header h1 {
  font-family: 'Neue Haas Grotesk Display', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px 0;
  color: var(--bg);
}

.writing-header .subtitle {
  font-size: clamp(16px, 2vw, 18px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(7,7,7,0.5);
  margin: 0;
}

.writing-content {
  font-family: 'Neue Haas Grotesk Text', system-ui, sans-serif;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: rgba(7,7,7,0.92);
}

.writing-content p { margin: 0 0 24px 0; font-size: inherit; }

.writing-content h2 {
  font-family: 'Neue Haas Grotesk Display', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 60px 0 24px 0;
  color: var(--bg);
}

.writing-content h3 {
  font-family: 'Neue Haas Grotesk Text', system-ui, sans-serif;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin: 40px 0 16px 0;
  color: var(--bg);
}

.writing-content strong { font-weight: 700; color: var(--bg); }
.writing-content em { font-style: italic; }

.writing-content ul,
.writing-content ol { margin: 24px 0; padding-left: 24px; }
.writing-content li { margin-bottom: 12px; line-height: 1.7; }
.writing-content li strong { color: var(--bg); }

.writing-footer {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(7,7,7,0.15);
}

.writing-footer .byline {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 8px 0;
  color: var(--bg);
}

.writing-footer .tagline {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin: 0 0 20px 0;
  color: rgba(7,7,7,0.68);
}

.writing-footer .cta-link {
  display: inline-block;
  font-family: 'Neue Haas Grotesk Text', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: rgba(7,7,7,0.92) !important;
  text-decoration: none;
  border-left: 2px solid rgba(7,7,7,0.25);
  padding-left: 16px;
  transition: color 0.6s ease, border-left-color 0.6s ease;
}

.writing-footer .cta-link:hover {
  color: var(--accent) !important;
  border-left-color: var(--accent);
}

.writing-nav { margin-bottom: 40px; }

.writing-nav a {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(7,7,7,0.5);
  text-decoration: none;
  transition: color 0.6s ease;
}

.writing-nav a:hover { color: var(--accent); }

/* ========== CONSTRAINT WATCH PAGE ========== */
#watch-root {
  width: 100%;
  min-height: 100vh;
  background-color: #f4f4f4;
  overflow: hidden;
}

.watch-screens {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh;
  overscroll-behavior: none;
  width: 100%;
}

.watch-screen {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 10vh 0;
}

.watch-content {
  width: 100%;
  padding-left: 18vw;
  padding-right: 8vw;
}

.watch-hero .watch-content { padding-top: 0; }

.watch-back-link {
  position: fixed;
  top: 50%;
  left: 4vw;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  z-index: 100;
}

.watch-back-link a {
  font-size: clamp(13px, 1.4vw, 15px) !important;
  letter-spacing: 0.12em !important;
  color: #070707 !important;
  opacity: 0.4 !important;
  text-decoration: none !important;
  transition: opacity 0.6s ease, color 0.6s ease !important;
}

.watch-back-link a:hover {
  color: #b88a5f !important;
  opacity: 1 !important;
}

.watch-hero h1 {
  font-family: 'Neue Haas Grotesk Display', sans-serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 clamp(24px, 4vh, 40px) 0;
  color: #1f1f1f;
}

.watch-intro {
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(31,31,31,0.7);
  margin: 0 0 12px 0;
}

.watch-subtext {
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: rgba(31,31,31,0.5);
  margin: 0;
}

.watch-prediction .watch-content { max-width: 1200px; }

.watch-date {
  font-size: clamp(13px, 1.4vw, 15px);
  letter-spacing: 0.15em;
  text-transform: lowercase;
  color: rgba(31,31,31,0.4);
  margin: 0 0 12px 0;
}

.watch-company {
  font-family: 'Neue Haas Grotesk Display', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-transform: lowercase;
  margin: 0 0 16px 0;
  color: #1f1f1f;
}

.watch-pattern {
  font-size: clamp(15px, 1.6vw, 18px);
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: #b88a5f;
  margin: 0 0 32px 0;
}

.watch-observation {
  font-size: clamp(17px, 2vw, 26px);
  line-height: 1.65;
  letter-spacing: 0.005em;
  color: rgba(31,31,31,0.75);
  margin: 0 0 36px 0;
  max-width: 920px;
}

.watch-directive {
  font-size: clamp(17px, 2vw, 26px);
  line-height: 1.65;
  letter-spacing: 0.005em;
  color: #1f1f1f;
  border-left: 2px solid rgba(31,31,31,0.2);
  padding-left: 24px;
  margin: 0 0 48px 0;
  max-width: 920px;
}

.watch-label {
  font-size: clamp(13px, 1.4vw, 15px);
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: rgba(31,31,31,0.4);
  margin: 0 0 14px 0;
  display: block;
}

.watch-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: clamp(14px, 1.5vw, 16px);
  letter-spacing: 0.02em;
  color: rgba(31,31,31,0.5);
}

.watch-meta strong {
  color: #b88a5f;
  font-weight: 400;
  margin-right: 8px;
}

.watch-cta .watch-content { max-width: 1000px; }

.watch-cta h2 {
  font-family: 'Neue Haas Grotesk Display', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  margin: 0 0 16px 0;
  color: #1f1f1f;
}

.watch-cta p {
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: rgba(31,31,31,0.7);
  margin: 0 0 32px 0;
}

.watch-email {
  display: inline-block;
  font-size: clamp(19px, 2.1vw, 26px);
  letter-spacing: 0.08em;
  color: #1f1f1f !important;
  text-decoration: none;
  border-left: 2px solid rgba(31,31,31,0.2);
  padding-left: 24px;
  transition:
    color 0.9s cubic-bezier(.2,.8,.2,1),
    border-left-color 0.9s cubic-bezier(.2,.8,.2,1);
}

.watch-email:hover {
  color: #b88a5f !important;
  border-left-color: #b88a5f;
}

/* ========== SITE-WIDE BACK LINK ========== */
.site-back-link {
  position: fixed;
  top: 50%;
  left: 4vw;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  z-index: 100;
}

.site-back-link a {
  font-size: clamp(13px, 1.4vw, 15px) !important;
  letter-spacing: 0.12em !important;
  color: #070707 !important;
  opacity: 0.4 !important;
  text-decoration: none !important;
  transition: opacity 0.6s ease, color 0.6s ease !important;
}

.site-back-link a:hover {
  color: #b88a5f !important;
  opacity: 1 !important;
}

#directive-privacy-root .site-back-link a,
#directive-access-root .site-back-link a,
#directive-terms-root .site-back-link a,
#directive-context-root .site-back-link a {
  color: #f4f4f4 !important;
}

#directive-privacy-root .site-back-link a:hover,
#directive-access-root .site-back-link a:hover,
#directive-terms-root .site-back-link a:hover,
#directive-context-root .site-back-link a:hover {
  color: #b88a5f !important;
  opacity: 1 !important;
}

/* ========== PATTERNS PAGE ========== */
#patterns-root .screen-2,
#patterns-root .screen-3,
#patterns-root .screen-4,
#patterns-root .screen-5 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ========== MOBILE ========== */
@media (max-width: 700px) {

  .scroll-line,
  .scroll-fill {
    left: 4vw;
  }

  .cursor-ring {
    display: none;
  }

  .crosshair-cursor {
    display: none;
  }

  /* hide clock on mobile */
  .local-time {
    display: none;
  }

  /* suppress glow on mobile */
  .homepage-glow {
    display: none;
  }

  .screen-1 {
    padding: 0 8vw;
  }

  .screen-1 h1 {
    font-size: clamp(52px, 14vw, 80px);
  }

  .screen-1 .subline {
    font-size: 12px;
    margin-top: 24px;
  }

  .live-watch {
    max-width: 80%;
    bottom: clamp(48px, 7vh, 64px);
  }

  .live-text {
    font-size: 10px;
  }

  .blockchain-ref {
    font-size: 9px;
    max-width: 52vw;
    top: 20px;
    right: 6vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .screen-2,
  .screen-3,
  .screen-4,
  .screen-5,
  .screen-6 {
    padding-left: 8vw;
    padding-right: 6vw;
  }

  .screen-2 p,
  .screen-3 p,
  .screen-4 p,
  .screen-5 p {
    font-size: clamp(19px, 4.5vw, 24px);
    line-height: 1.5;
  }

  .screen-6 p.tight,
  .screen-6 p.spaced {
    font-size: 15px;
  }

  .access-line {
    font-size: 14px;
    padding: 10px 0;
  }

  .access-divider {
    margin: 14px 0;
  }

  .dw-trademark {
    margin-top: clamp(32px, 5vh, 48px);
    font-size: 11px;
    color: rgba(244,244,244,0.08);
  }

  .access,
  .privacy,
  .terms,
  .context {
    padding-left: 8vw;
    padding-right: 6vw;
  }

  .access-content p,
  .privacy-content p,
  .terms-content p,
  .context-content p {
    font-size: clamp(18px, 4vw, 22px);
    line-height: 1.5;
  }

  .site-back-link {
    top: auto;
    bottom: clamp(20px, 4vh, 32px);
    left: 6vw;
    transform: none;
  }

  .site-back-link a {
    font-size: 10px !important;
    letter-spacing: 0.14em !important;
    opacity: 0.3 !important;
  }

  .watch-screen { padding: 8vh 0; }

  .watch-content {
    padding-left: 8vw !important;
    padding-right: 6vw !important;
  }

  .watch-back-link {
    top: auto;
    bottom: clamp(20px, 4vh, 32px);
    left: 6vw;
    transform: none;
    transform-origin: unset;
  }

  .watch-back-link a {
    font-size: 10px !important;
    letter-spacing: 0.14em !important;
    opacity: 0.3 !important;
  }

  .watch-observation,
  .watch-directive { max-width: 100%; }
  .watch-directive { padding-left: 18px; }

  .writing-page { padding: 8vh 8vw; }
  .writing-content { font-size: 17px; line-height: 1.7; }
  .writing-header { margin-bottom: 48px; }
  .writing-footer { margin-top: 60px; }
}

/* ========== TABLET ========== */
@media (min-width: 701px) and (max-width: 1024px) {

  .scroll-line,
  .scroll-fill {
    left: 5vw;
  }

  .screen-1 h1 {
    font-size: clamp(72px, 12vw, 120px);
  }

  .blockchain-ref {
    max-width: 180px;
  }

  .screen-2,
  .screen-3,
  .screen-4,
  .screen-5,
  .screen-6 {
    padding-left: 12vw;
    padding-right: 6vw;
  }

  .screen-2 p,
  .screen-3 p,
  .screen-4 p,
  .screen-5 p {
    font-size: clamp(20px, 3vw, 28px);
  }

  .screen-6 p.tight,
  .screen-6 p.spaced {
    font-size: clamp(15px, 2vw, 20px);
  }

  .access-line {
    font-size: clamp(14px, 1.8vw, 18px);
  }
}