/* ═══════════════════════════════════════════════════════════════
   PERFECT BRUTALISM & TECH INDUSTRIAL (Omar Reyes)
   ═══════════════════════════════════════════════════════════════ */

/* ─── RESET & DEFAULTS ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Dark High-Contrast Theme */
  --bg: #0A0A0A;
  --fg: #F4F4F0;
  --fg-dim: #A0A09B;

  /* Acid Accent Color (Green/Yellow) */
  --accent: #CCFF00;

  /* Borders */
  --border-weight: 1px;
  --border-color: rgba(244, 244, 240, 0.2);
  --border: var(--border-weight) solid var(--border-color);

  /* Typography Variables */
  --font-display: 'Clash Display', 'Helvetica Now Display Black', 'Monument Extended', sans-serif;
  --font-mono: 'JetBrains Mono', 'Space Mono', monospace;
  --font-serif-sub: 'Inter', sans-serif;
  /* Clean sans for subtitle */
}

/* ─── GLOBAL ─── */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-mono);
  /* Default to mono for that dev feel */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Global link/button styles — no underline, inherit color on all devices */
a,
button,
[role="button"],
input,
textarea {
  text-decoration: none;
  color: inherit;
}

/* Brutalist custom cursor — desktop only */
@media (pointer: fine) {
  body {
    cursor: none;
  }

  a,
  button,
  [role="button"],
  input,
  textarea {
    cursor: none !important;
  }

  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    border-radius: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, background-color 0.2s, width 0.2s, height 0.2s;
  }
}

ul {
  list-style: none;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

/* ─── GLOBAL NOISE ─── */
.global-edge {
  position: fixed;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--fg-dim);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 100;
  pointer-events: none;
  opacity: 0.5;
}

.global-edge--left {
  left: 1rem;
}

.global-edge--right {
  right: 1rem;
}

body::before {
  content: '';
  position: fixed;
  top: 30%;
  left: 30%;
  width: 30vw;
  height: 30vw;
  background: var(--accent);
  filter: blur(150px);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR (HEADER)
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: stretch;
  border-bottom: 2px solid #FFF;
  background: transparent;
  z-index: 1000;
  mix-blend-mode: difference;
  color: #FFF;
}

.mobile-text {
  display: none !important;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  border-right: 2px solid #FFF;
}

.nav__links {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

.nav__link {
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  border-left: 2px solid #FFF;
  transition: all 0.2s ease-out;
  text-transform: uppercase;
}

.nav__link:hover {
  background: var(--fg);
  color: var(--bg);
}

.nav__link--accent:hover {
  background: var(--accent);
  color: var(--bg);
}

.nav__lang-toggle {
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  border-left: 2px solid #FFF;
  transition: all 0.2s ease-out;
  cursor: none !important;
}

.nav__lang-toggle:hover {
  background: var(--accent);
  color: #000;
}

.active-lang {
  color: var(--accent);
}

.nav__lang-toggle:hover .active-lang {
  color: #000;
}

/* ═══════════════════════════════════════════════════════════════
   SURGICAL OVERRIDE: ARTICLE VIEW NAVBAR (LIGHT MODE)
   ═══════════════════════════════════════════════════════════════ */
.article-page .nav {
  mix-blend-mode: normal;
  border-bottom: 2px solid #070707;
  background: transparent;
  color: #070707;
}

.article-page .nav__logo {
  border-right: 2px solid #070707;
}

.article-page .nav__link,
.article-page .nav__lang-toggle {
  border-left: 2px solid #070707;
}

.article-page .nav__link:hover {
  background: #070707;
  color: #FFF;
}

.article-page .nav__link--accent:hover {
  background: var(--accent);
  color: #070707;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: 60px;
  /* Offset for navbar */
  display: flex;
  flex-direction: column;
}

.hero__grid {
  flex-grow: 1;
  display: grid;
  grid-template-columns: 1fr 300px;
  /* Text area vs side panel */
  grid-template-rows: 1fr auto;
  border-bottom: var(--border);
}

/* ─── Hero Title Area ─── */
.hero__title-area {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 8.5rem);
  font-weight: 700;
  line-height: 0.85;
  /* Extremely tight leading */
  letter-spacing: -0.04em;
  /* Extremely tight tracking */
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ─── Hero Collage Overrides ─── */
.collage-line {
  position: relative;
  display: inline-block;
}

.collage-line-1 {
  transform: rotate(-1.5deg);
  z-index: 3;
  margin-left: 0.5vw;
}

.collage-line-2 {
  transform: rotate(0.8deg);
  z-index: 2;
  margin-top: -0.2em;
  margin-left: -0.5vw;
}

.collage-line-3 {
  transform: rotate(-2deg);
  z-index: 4;
  margin-top: -0.3em;
  margin-left: 1.5vw;
}

.collage-block {
  display: inline-flex;
  position: relative;
  padding: 0.1em 0.25em;
  box-sizing: border-box;
}

.collage-1 {
  background: var(--fg);
  color: var(--bg);
  clip-path: polygon(0% 2%, 99% -1%, 100% 98%, 95% 100%, 2% 98%, -1% 4%);
}

.collage-accent-line {
  position: absolute;
  bottom: 0.08em;
  left: 0.2em;
  width: calc(100% - 0.4em);
  height: 0.08em;
  background-color: var(--accent);
  z-index: 0;
}

.collage-1 .collage-text {
  position: relative;
  z-index: 1;
}

.collage-2 {
  background: #111;
  color: var(--fg);
  padding-right: 1.4em;
  clip-path: polygon(1% 0%, 100% 2%, 99% 99%, 0% 100%);
  border: 1px solid rgba(244, 244, 240, 0.1);
}

.collage-grid-bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1.2em;
  background-image:
    linear-gradient(rgba(204, 255, 0, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 255, 0, 0.4) 1px, transparent 1px);
  background-size: 0.15em 0.15em;
  border-left: 0.05em solid var(--accent);
  z-index: 0;
}

.collage-2 .collage-text {
  position: relative;
  z-index: 1;
}

.collage-3 {
  background: var(--accent);
  color: var(--bg);
  clip-path: polygon(1.5% 1%, 99% 3%, 98% 99%, 0.5% 97%);
}

.line-mask {
  overflow: hidden;
  display: block;
  padding-bottom: 0.05em;
  /* Avoid font clipping with tight line-height */
}

.reveal-text {
  display: inline-block;
  transform: translateY(110%);
  /* Starting point for enter animation */
}

/* ─── Hero Asset Area ─── */
.hero__asset-area {
  grid-column: 1 / -1;
  /* spans full width behind */
  grid-row: 1 / -1;
  /* spans full height */
  position: relative;
  overflow: hidden;
  z-index: 1;
  /* Behin the text */
  pointer-events: none;
}

.hero__asset-container {
  position: absolute;
  top: 10%;
  right: 15%;
  width: clamp(300px, 40vw, 600px);
  max-width: 100%;
}

.hero__img {
  width: 100%;
  height: auto;
  filter: grayscale(100%) contrast(1.2) brightness(0.8);
  mix-blend-mode: hard-light;
  transition: filter 0.5s ease;
}

/* Acid hover effect when user cursor is over hero */
.hero:hover .hero__img {
  filter: grayscale(0%) contrast(1.3) hue-rotate(90deg);
  /* Adjust hue towards acid green/purple */
}

/* ─── Hero Micro Data Terminal ─── */
.hero__data-area {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  border-left: var(--border);
  background: var(--bg);
  z-index: 5;
  display: flex;
  flex-direction: column;
}

.data-terminal {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 60px;
}

.data-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.d-label {
  font-size: 0.7rem;
  color: var(--fg-dim);
  text-transform: uppercase;
}

.d-value {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
}

.pulse-active {
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pulse-active::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.5s infinite;
}

.d-socials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem;
}

.pulse-hover {
  font-size: 0.70rem;
  transition: color 0.2s, background 0.2s;
  padding: 0.3rem 0.4rem;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  width: 100%;
  border: 1px solid rgba(244, 244, 240, 0.05);
  box-sizing: border-box;
}

.pulse-hover:hover {
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
}

.terminal-init-btn {
  margin-top: 1rem;
  width: 100%;
  min-height: 40px;
  background-color: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.2s ease-out;
  border: 1px solid var(--accent);
}

.terminal-init-btn:hover {
  background: transparent;
  color: var(--accent);
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}

/* ─── Hero Subtitle ─── */
.hero__sub-area {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  padding: 2rem;
  border-top: var(--border);
  background: var(--bg);
  z-index: 10;
}

.hero__subtitle {
  font-family: var(--font-serif-sub);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 200;
  font-style: italic;
  max-width: 1200px;
  line-height: 1.4;
  color: var(--fg);
}

/* ─── Marquee Conveyor ─── */
.marquee-container {
  width: 100%;
  border-bottom: var(--border);
  background: var(--accent);
  color: var(--bg);
  overflow: hidden;
  padding: 0.5rem 0;
  display: flex;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 15s linear infinite;
}

.marquee-text {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

  /* Assume track content is duplicated so -50% perfectly loops */
}



/* ═══════════════════════════════════════════════════════════════
   SECTION 2: ABOUT (Swiss/Editorial Manifesto)
   ═══════════════════════════════════════════════════════════════ */
.about-swiss {
  background: #F4F4F0;
  color: #0A0A0A;
  border-bottom: 1px solid #0A0A0A;
  border-top: 1px solid #0A0A0A;
}

.asw__header {
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 15rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  padding: 2rem 4vw;
  text-align: center;
  border-bottom: 1px solid #0A0A0A;
  text-transform: uppercase;
  position: relative;
}

.blue-square {
  display: inline-block;
  width: 0.3em;
  height: 0.3em;
  background-color: #2F00FF;
  margin-left: 0.1em;
  vertical-align: top;
  margin-top: 0.1em;
}

.asw__grid--asymmetric {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.asw__col {
  padding: 4vw;
  border-right: 1px solid #0A0A0A;
  border-bottom: 1px solid #0A0A0A;
  display: flex;
  flex-direction: column;
}

.asw__col:nth-child(even) {
  border-right: none;
}

.asw__col:nth-child(3),
.asw__col:nth-child(4) {
  border-bottom: none;
}

.asw__col--1,
.asw__col--2,
.asw__col--3,
.asw__col--4 {
  grid-column: span 1;
  border-top: none;
}

.asw__col--4 {
  background-color: var(--accent);
  color: #0A0A0A;
  justify-content: space-between;
}

.giant-intro {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.9;
  text-transform: uppercase;
  display: inline;
  margin-right: 0.2em;
  letter-spacing: -0.02em;
}

.asw__col p {
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 1vw, 1rem);
  line-height: 1.4;
  text-align: justify;
  text-transform: uppercase;
}

.asw__col--3 p {
  font-size: clamp(0.7rem, 1vw, 1rem) !important;
  line-height: 1.4 !important;
}

.asw__col--3 .giant-intro {
  font-size: clamp(2.5rem, 5vw, 4rem);
  display: block;
  margin-bottom: 0.5em;
}

.asw__col--4 .giant-intro {
  font-size: clamp(2rem, 4vw, 3rem);
  display: block;
  margin-bottom: 0.5em;
}

.asw__reboot-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.reboot-btn {
  background: #0A0A0A;
  color: var(--accent);
  border: 1px solid #0A0A0A;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: none !important;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.reboot-btn:hover {
  background: var(--fg);
  color: #0A0A0A;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 3: EXPERIENCE (The Blueprint / Parallel Diagram)
   ═══════════════════════════════════════════════════════════════ */
.blueprint-section {
  position: relative;
  width: 100%;
  height: 250vh;
  /* Scroll length */
  background-color: var(--bg);
  border-bottom: 1px solid #333;
}

.bp-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  /* Ensure it stays above global noise */
}

.bp-axis-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 80vh;
  /* Drawing area relative to viewport */
}

.bp-svg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.bp-path-main {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2px;
}

.bp-path-branch {
  fill: none;
  stroke: #444;
  stroke-width: 2px;
}

.bp-path-branch.active {
  stroke: var(--accent);
}

.bp-node {
  position: absolute;
  z-index: 10;
  opacity: 0;
  transform: translateY(20px);
}

.bp-node__track {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.bp-node__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: var(--fg);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.bp-node__title--inverted {
  background: var(--accent);
  color: #000;
  display: inline-block;
  padding: 0 0.2em;
}

.bp-node__desc {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  /* V. small */
  color: var(--fg-dim);
  max-width: 35ch;
  line-height: 1.4;
  margin-top: 0.5rem;
}

.bp-node--left {
  text-align: right;
}

.bp-node--right {
  text-align: left;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 4: SPEAKING (Structured Brutalism)
   ═══════════════════════════════════════════════════════════════ */
.speaking-swiss {
  background: #F4F4F0;
  border-bottom: 2px solid #000;
  position: relative;
  overflow: hidden;
}

.speaking-bg-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 200%;
  pointer-events: none;
  z-index: 0;
  display: flex;
}

.speaking-bg-track {
  display: flex;
  white-space: nowrap;
  animation: speaking-marquee 40s linear infinite;
}

.speaking-bg-track span {
  font-family: var(--font-display);
  font-size: 15vw;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.05);
  /* Massive subtle outline */
  padding-right: 2rem;
}

@keyframes speaking-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ssw__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(300px, auto);
  position: relative;
  z-index: 10;
}

.ssw__item {
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  position: relative;
  overflow: hidden;
  display: flex;
}

.ssw__img,
.ssw__yt-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
  display: block;
}

.ssw__item--quote {
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #F4F4F0;
}

.ssw__quote-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 5rem);
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: #000;
  text-align: center;
}

.ssw__item--youtube {
  grid-column: span 2;
  background: var(--accent);
  display: block;
}

.ssw__youtube-cta {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 44px;
  min-width: 44px;
  position: relative;
  transition: filter 0.2s;
}

.ssw__yt-bg {
  opacity: 0.5;
  mix-blend-mode: multiply;
  transition: transform 0.5s ease;
}

.ssw__yt-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  color: #000;
  transition: transform 0.3s ease;
}

.ssw__yt-label {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  color: #000;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ssw__youtube-cta:hover {
  filter: invert(1);
}

.ssw__youtube-cta:hover .ssw__yt-bg {
  transform: scale(1.05);
}

.ssw__youtube-cta:hover .ssw__yt-icon {
  transform: translate(-50%, -50%) scale(1.1);
}

.footer {
  display: flex;
  flex-direction: column;
}

/* ─── Footer Top ─── */
.footer__top {
  padding: 6rem 2rem;
  border-bottom: var(--border);
}

.footer__cta {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 20rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.reveal-text-footer {
  display: inline-block;
}

/* ─── Footer Grid ─── */
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: var(--border);
}

.footer__col {
  padding: 3rem 2rem;
  border-right: var(--border);
  display: flex;
  align-items: center;
}

.footer__col:last-child {
  border-right: none;
}

.footer__desc {
  font-family: var(--font-serif-sub);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.5;
  color: var(--fg-dim);
  margin-left: 1em;
}

.socials-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.socials-list a {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  transition: color 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
}

.socials-list a:hover {
  color: var(--accent);
}

.socials-list a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-10px);
  color: var(--accent);
}

.socials-list a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Init Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 1em;
  width: 100%;
  height: 100%;
  /* Stretch to fill column */
  min-height: 100px;
  background-color: var(--bg);
  color: var(--fg);
  border: 1px solid var(--fg);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  transition: all 0.2s ease-out;
  border-radius: 0;
  /* Strict square Brutalism */
}

.btn-primary:hover {
  background-color: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* ─── Footer Bottom ─── */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.fake-barcode {
  font-family: 'Times New Roman', Times, serif;
  /* Using basic serif for fake lines */
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.1em;
  display: inline-block;
  transform: scaleY(1.5);
  transform-origin: bottom;
  color: var(--fg-dim);
}

.footer__copyright {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--fg-dim);
}

.highlight-duty {
  color: var(--accent);
  font-weight: 700;
}


/* ═══════════════════════════════════════════════════════════════
   SECTION 2: ABOUT (La Intersección)
   ═══════════════════════════════════════════════════════════════ */
.about {
  background: var(--bg);
  border-top: 1px solid #333;
}

.about__grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  min-height: 100vh;
}

/* ─── Left Column ─── */
.about__left {
  border-right: 1px solid #333;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.about__index {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.about__number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 12rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--fg);
}

.about__label {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  text-transform: uppercase;
}

/* ─── CSS Barcode ─── */
.about__barcode-block {
  margin-top: auto;
  padding-top: 4rem;
}

.css-barcode {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 60px;
}

.css-barcode span {
  display: block;
  width: 3px;
  background: var(--accent);
  opacity: 0.85;
}

/* Stagger bar heights for realism */
.css-barcode span:nth-child(odd) {
  height: 100%;
}

.css-barcode span:nth-child(even) {
  height: 60%;
}

.css-barcode span:nth-child(3n) {
  height: 80%;
  width: 2px;
}

.css-barcode span:nth-child(5n) {
  height: 45%;
  width: 4px;
}

.css-barcode span:nth-child(7n) {
  height: 90%;
  width: 1px;
}

.css-barcode span:nth-child(11n) {
  height: 35%;
  width: 5px;
}

.barcode-serial {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.15em;
}

/* ─── Right Column ─── */
.about__right {
  padding: 6rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* H2 — Scroll reveal line by line */
.about__h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.about-line-mask {
  overflow: hidden;
  display: block;
  padding-bottom: 0.08em;
}

.about-reveal {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}

/* Body Paragraphs */
.about__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
}

.about__body p {
  font-family: var(--font-serif-sub);
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  line-height: 1.7;
  color: #E5E5E5;
}

/* Data Grid 2×2 */
.about__data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 1rem;
  max-width: 600px;
}

.about__data-cell {
  border: 1px solid #000;
  background: var(--accent);
  /* Acid Lime Background */
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  /* Start invisible for GSAP stagger */
  opacity: 0;
  transform: translateY(20px);
}

.adc-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #000;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.adc-value {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.05em;
}


/* ═══════════════════════════════════════════════════════════════
   SECTION 5: PRESS (The Infinite Diagonal Collage)
   ═══════════════════════════════════════════════════════════════ */
.press-infinite {
  background: var(--accent);
  position: relative;
  width: 100%;
  height: 400vh;
  /* Gives scrolling length */
}

.press-inf__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: difference;
  opacity: 0;
  /* GSAP will toggle this */
  visibility: hidden;
}

.press-inf__counter {
  text-align: center;
  color: #a359e9;
  filter: drop-shadow(4px 4px 0 rgba(7, 7, 7, 1));
}

.press-inf__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 15rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.press-inf__stats {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 2vw, 2rem);
  margin-top: 1rem;
}

.press-inf__canvas-wrapper {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.press-inf__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 250vw;
  /* Massive width */
  height: 250vh;
  /* Massive height */
  will-change: transform;
}

.pin-masonry {
  position: relative;
  width: 100%;
  height: 100%;
}

.pin-img {
  position: absolute;
  object-fit: cover;
  filter: grayscale(100%);
  border: 4px solid #0033FF;
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 1);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .hero__title-area {
    padding-top: 6rem;
    grid-row: 1 / 2;
  }

  .hero__asset-area {
    grid-row: 1 / 3;
  }

  .hero__asset-container {
    right: 5%;
    top: 20%;
    opacity: 0.5;
  }

  .hero__sub-area {
    grid-row: 2 / 3;
    border-top: none;
    border-bottom: var(--border);
  }

  .hero__data-area {
    grid-row: 3 / 4;
    grid-column: 1 / -1;
    border-left: none;
    flex-direction: row;
  }

  .data-terminal {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem 2rem;
    position: static;
  }

  .data-row {
    flex-basis: 45%;
  }

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

  .footer__col {
    border-right: none;
    border-bottom: var(--border);
    padding: 2rem;
  }

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

  .btn-primary {
    min-height: 80px;
  }

  /* About responsive */
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__left {
    border-right: none;
    border-bottom: 1px solid #333;
    padding: 3rem 2rem;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .about__index {
    position: static;
  }

  .about__number {
    font-size: clamp(3rem, 8vw, 6rem);
  }

  .about__barcode-block {
    margin-top: 0;
    padding-top: 0;
  }

  .about__right {
    padding: 3rem 2rem;
  }

  /* Blueprint responsive */
  .bp__canvas {
    height: 200vh;
  }

  .bp__edge-text {
    display: none;
  }

  .bp__node {
    width: 300px;
  }

  .bp__node--1 {
    left: 10%;
  }

  .bp__node--2 {
    right: 10%;
  }

  .bp__node--3 {
    left: 10%;
  }

  .bp__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
}

@media (max-width: 768px) {

  /* ─── GLOBAL ─── */
  html,
  body {
    max-width: 100vw;
  }

  .desktop-text {
    display: none !important;
  }

  .mobile-text {
    display: inline !important;
  }

  .global-edge {
    display: none !important;
  }

  body::before {
    width: 60vw;
    height: 60vw;
    left: 10%;
    top: 20%;
  }

  /* ─── NAVBAR ─── */
  .nav {
    height: 60px;
    flex-wrap: nowrap;
    max-width: 100vw;
  }

  .nav__logo {
    padding: 0 1rem;
    font-size: 0.9rem;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .nav__logo img {
    width: 100px;
    height: auto;
  }

  .nav__links {
    display: flex;
    width: auto;
    flex-grow: 1;
    overflow-x: auto;
    overflow-y: hidden;
    border-top: none;
    -webkit-overflow-scrolling: touch;
    /* Removed scrollbar hiding so users know they can swipe */
    scrollbar-width: thin;
  }

  .nav__links::-webkit-scrollbar {
    height: 4px;
  }

  .nav__links::-webkit-scrollbar-thumb {
    background: var(--accent);
  }

  .nav__link {
    white-space: nowrap;
    font-size: 0.6rem;
    padding: 0.8rem 0.6rem;
    border-left: 1px solid #FFF;
    display: flex;
    align-items: center;
  }

  .nav__link:first-child {
    border-left: none;
  }

  .nav__lang-toggle {
    white-space: nowrap;
    font-size: 0.6rem;
    padding: 0.8rem 0.6rem;
    border-left: 1px solid #FFF;
    margin-left: 0;
    display: flex;
    align-items: center;
  }

  .nav__link--accent {
    white-space: nowrap;
    font-size: 0.6rem;
    padding: 0.8rem 0.6rem;
    display: flex;
    align-items: center;
  }

  /* ─── HERO ─── */
  .hero {
    padding-top: 60px;
    height: auto !important;
    min-height: auto !important;
    contain: layout style;
  }

  .hero__grid {
    display: flex !important;
    flex-direction: column !important;
  }

  .hero__title-area {
    order: 1;
    padding: 2rem 1.5rem;
    z-index: 10;
    min-height: 180px; /* Reserve space for JS-injected titles — prevents CLS */
  }

  .hero__title {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }

  .hero__asset-area {
    order: 2;
    position: relative;
    height: 300px;
    z-index: 1;
    overflow: hidden;
  }

  .hero__img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
  }

  .hero__asset-container {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: 280px;
    margin: 0 auto;
    opacity: 0.7;
  }

  .hero__sub-area {
    order: 3;
    border-top: var(--border);
    border-bottom: var(--border);
    padding: 1.5rem;
    min-height: 100px; /* Reserve space for JS-injected subtitle — prevents CLS */
  }

  .hero__subtitle {
    font-size: 0.85rem;
  }

  /* ─── HERO DATA TERMINAL ─── */
  .hero__data-area {
    order: 4;
    border-left: none;
    border-top: var(--border);
    display: block !important;
    visibility: visible !important;
    min-height: 400px; /* Reserve space for JS-injected terminal data — prevents CLS */
  }

  .data-terminal {
    flex-direction: column;
    padding: 1.5rem;
    position: static;
    gap: 1rem;
  }

  .data-row {
    flex-basis: 100%;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(244, 244, 240, 0.1);
  }

  .data-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .d-socials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .terminal-init-btn {
    margin-top: 0.5rem;
  }

  /* ─── MARQUEE ─── */
  .marquee-container {
    min-height: 30px; /* Reserve space for JS-injected marquee — prevents CLS */
  }

  .marquee-text {
    font-size: 0.7rem;
  }

  /* On mobile: show hero text immediately without animation transform — prevents CLS */
  .reveal-text {
    transform: none !important;
  }

  /* ─── ABOUT SWISS (Light Section) ─── */
  .asw__header {
    font-size: clamp(2rem, 10vw, 6rem);
    padding: 1.5rem;
  }

  .asw__grid--asymmetric {
    display: flex;
    flex-direction: column;
  }

  .asw__col {
    border-right: none !important;
    border-bottom: 1px solid #0A0A0A;
    padding: 2rem 1.5rem;
  }

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

  .giant-intro {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .asw__col p {
    font-size: 0.8rem;
  }

  .asw__col--3 .giant-intro {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .asw__col--4 .giant-intro {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  /* ─── ABOUT (Dark Section) ─── */
  .about__grid {
    grid-template-columns: 1fr !important;
  }

  .about__left {
    border-right: none !important;
    border-bottom: 1px solid #333;
    padding: 2rem 1.5rem;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .about__index {
    position: static;
  }

  .about__number {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .about__barcode-block {
    margin-top: 0;
    padding-top: 0;
  }

  .about__right {
    padding: 2rem 1.5rem;
    gap: 2rem;
  }

  .about__h2 {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }

  .about__body {
    max-width: 100%;
  }

  .about__body p {
    font-size: 0.95rem;
  }

  .about__data-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  /* ─── EXPERIENCE (Blueprint) ─── */
  .blueprint-section {
    height: auto !important;
  }

  .bp-sticky {
    position: static !important;
    height: auto !important;
  }

  .bp-axis-container {
    height: auto !important;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem 1.5rem;
  }

  .bp-svg-layer {
    display: none !important;
  }

  .bp-node {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    text-align: left !important;
    transform: none !important;
    opacity: 1 !important;
    margin: 0;
    border: 2px solid rgba(244, 244, 240, 0.15);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.8);
    width: 100% !important;
  }

  .bp-node__title {
    font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
  }

  .bp-node__desc {
    max-width: 100%;
  }

  /* ─── SPEAKING SWISS ─── */
  .ssw__grid {
    grid-template-columns: 1fr;
  }

  .ssw__item {
    grid-column: 1 / -1 !important;
    border-right: none;
    min-height: 250px;
  }

  .ssw__item--youtube {
    grid-column: 1 / -1 !important;
    min-height: 300px;
  }

  .ssw__quote-text {
    font-size: clamp(1.5rem, 6vw, 3rem);
  }

  .ssw__yt-label {
    font-size: clamp(1.2rem, 5vw, 2rem);
    bottom: 1rem;
    left: 1rem;
  }

  .ssw__yt-icon {
    width: 60px;
  }

  /* ─── PRESS INFINITE ─── */
  .press-infinite {
    height: 350vh;
  }

  .press-inf__canvas {
    width: 450vw;
    height: 450vh;
  }

  #home-press-gallery img {
    max-width: 70vw !important;
    height: auto !important;
  }

  .press-inf__title {
    font-size: clamp(2rem, 8vw, 5rem);
  }

  .press-inf__stats {
    font-size: clamp(0.7rem, 2.5vw, 1rem);
  }

  /* ─── EDITORIAL / BLOG ─── */
  .ed-grid {
    grid-template-columns: 1fr;
  }

  .ed-item {
    border-right: none;
    border-bottom: 2px solid #000;
  }

  .ed-title {
    font-size: clamp(3rem, 12vw, 8rem);
  }

  /* ─── FOOTER ─── */
  .footer__top {
    padding: 3rem 1.5rem;
  }

  .footer__cta {
    font-size: clamp(3rem, 14vw, 8rem);
  }

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

  .footer__col {
    border-right: none;
    border-bottom: var(--border);
    padding: 2rem 1.5rem;
  }

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

  .btn-primary {
    min-height: 70px;
    font-size: 1rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .fake-barcode {
    font-size: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 6: EDITORIAL BLOCK
   ═══════════════════════════════════════════════════════════════ */
.editorial {
  background: #F4F4F0;
  color: #000;
  border-bottom: 2px solid #000;
  position: relative;
}

.ed-header {
  padding: 4rem 2rem;
  border-bottom: 2px solid #000;
  text-align: center;
}

.ed-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 15vw, 15rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: #000;
}

.ed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 2px solid #000;
}

.ed-item {
  padding: 3rem 2rem;
  border-right: 2px solid #000;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: background 0.2s, color 0.2s;
  cursor: none !important;
  text-decoration: none;
  min-height: 250px;
}

.ed-item:last-child {
  border-right: none;
}

.ed-item:hover {
  background: var(--accent);
  color: #000;
}

.ed-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
}

.ed-item-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: inherit;
  margin-top: auto;
  /* push to bottom */
}

.ed-cta-wrapper {
  text-align: center;
}

.ed-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  background: #F4F4F0;
  transition: background 0.2s, color 0.2s;
}

.ed-cta-link:hover {
  background: #000;
  color: #F4F4F0;
}

/* ═══════════════════════════════════════════════════════════════
   WIRED BRUTALISM ARTICLE PAGE
   ═══════════════════════════════════════════════════════════════ */
.article-page {
  background-color: #FFFFFF;
  color: #000;
  font-family: var(--font-serif-sub);
  min-height: 100vh;
}

/* We override nav on article page */
.article-page .nav {
  background: #FFFFFF;
  border-bottom: 2px solid #000;
}

.article-page .nav__logo {
  border-right: 2px solid #000;
}

.article-page .nav__lang-toggle {
  border-left: 2px solid #000;
  color: #000;
}

.article-page .nav__lang-toggle:hover {
  background: var(--accent);
  color: #000;
}

.article-header {
  padding: 8rem 2rem 4rem 2rem;
  border-bottom: 2px solid #000;
  text-align: center;
}

.article-cat {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  display: inline-block;
}

/* Reading Progress Bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 8px;
  background-color: var(--accent);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* 12-Col Article Layout */
.article-layout-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .article-layout-grid {
    padding: 0 3rem;
  }
}

.article-hero-header {
  grid-column: 1 / -1;
  margin-bottom: 4rem;
  padding-top: 4rem;
}

.article-massive-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-top: 2rem;
}

.article-divider-heavy {
  border: 0;
  border-bottom: 4px solid #000;
  margin: 2rem 0;
}

.article-hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 2px solid #000;
  margin-top: 2rem;
  box-shadow: 15px 15px 0 rgba(0, 0, 0, 1);
}

.article-meta {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Editoral Reading Column */
.article-body-legible {
  grid-column: 2 / span 10;
  font-family: var(--font-sans), sans-serif;
  /* Clean sans-serif override */
  font-size: 1.125rem;
  line-height: 1.8;
  color: #111;
  padding-bottom: 8rem;
}

@media (min-width: 1024px) {
  .article-body-legible {
    grid-column: 3 / span 8;
    font-size: 1.5rem;
  }
}

.article-body-legible p {
  margin-bottom: 2rem;
}

.article-body-legible p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 900;
  padding-right: 1.5rem;
  padding-top: 0.5rem;
  color: var(--accent);
  -webkit-text-stroke: 2px #000;
  line-height: 0.8;
}

.pull-quote-art {
  background: var(--accent);
  padding: 3rem;
  margin: 4rem -5%;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.04em;
  border: 2px solid #000;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 1);
}

.bleed-media {
  width: 110%;
  margin-left: -5%;
  border: 2px solid #000;
  box-shadow: 15px 15px 0 rgba(0, 0, 0, 1);
  margin-top: 3rem;
  margin-bottom: 3rem;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════
   BLOG ARCHIVE SHELL
   ═══════════════════════════════════════════════════════════════ */
.archive-main {
  padding: 8rem 1rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .archive-main {
    padding: 8rem 4rem 4rem;
  }
}

.archive-massive-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: 900;
  border-bottom: 4px solid #000;
  padding-bottom: 2rem;
  margin-bottom: 4rem;
}

.archive-list-container {
  display: flex;
  flex-direction: column;
}

.archive-list-header {
  display: grid;
  grid-template-columns: 1fr 2fr 4fr 1fr;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 1rem 0;
  border-bottom: 2px solid #000;
}

.archive-row {
  display: grid;
  grid-template-columns: 1fr 2fr 4fr 1fr;
  padding: 2rem 0;
  border-bottom: 1px solid #000;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, color 0.2s;
  align-items: center;
}

.archive-row:hover {
  background: #000;
  color: var(--accent);
}

.a-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
}

.a-date,
.a-cat,
.a-time {
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .archive-list-header {
    display: none;
  }

  .archive-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .a-title {
    font-size: 2rem;
    order: -1;
  }
}

/* Back to Top Brutalist Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #000;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 1.5rem;
  cursor: none !important;
  z-index: 1000;
  transition: transform 0.2s, filter 0.2s;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  filter: invert(1);
  transform: scale(1.1);
}

/* ─── GOOGLE TRANSLATE OVERRIDES ─── */
body {
  top: 0 !important;
}

.skiptranslate iframe,
.goog-te-banner-frame {
  display: none !important;
}

#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}