/* ============================================================
   FIXMAN SHOWCASE — the showpiece styles
   Restraint + craft. Pure CSS + small JS. No framework.
   ============================================================ */

:root {
  --red: #E51919;
  --red-deep: #B30000;
  --blue: #097BAA;
  --blue-deep: #003388;
  --green: #067963;
  --orange: #FFA500;
  --lime: #BFFF00;
  --ice: #C5E8F2;
  --ink: #0A0C0F;
  --ink-2: #1A1D24;
  --ink-3: #2A2F3A;
  --graphite: #333333;
  --steel: #69727D;
  --smoke: #F5F7FA;
  --paper: #FFFFFF;
  --line: #DDDDDD;
  --line-soft: #EDEDED;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 200ms;
  --t-base: 400ms;
  --t-slow: 700ms;

  --container: 1280px;
  --pad: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
html { overflow-x: clip; }
img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 9999;
  background: var(--ink); color: var(--paper);
  padding: 12px 20px; border-radius: 8px;
  transition: top var(--t-fast) var(--ease-out);
}
.skip-link:focus { top: 16px; }

/* ============ Three.js background ============ */
#bg-canvas {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none;
  opacity: 0.4;
}

/* ============ Custom cursor ============ */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  border-radius: 50%;
  mix-blend-mode: difference;
  transition: width 200ms, height 200ms, transform 100ms;
}
.cursor {
  width: 36px; height: 36px;
  border: 1.5px solid var(--paper);
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--paper);
  transform: translate(-50%, -50%);
}
@media (hover: none) {
  .cursor, .cursor-dot { display: none; }
}

/* ============ Scroll progress ============ */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: transparent; z-index: 9000;
}
.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--red) 100%);
  width: 0%;
  transition: width 100ms linear;
}

/* ============ Utility bar ============ */
.utility-bar {
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink-3);
}
.utility-bar .container {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.utility-left { display: flex; align-items: center; gap: 10px; }
.utility-right { display: flex; gap: 20px; }
.utility-right a { transition: color var(--t-fast); }
.utility-right a:hover { color: var(--red); }
.utility-right strong { color: var(--paper); font-weight: 600; }
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(6, 121, 99, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(6, 121, 99, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(6, 121, 99, 0); }
  100% { box-shadow: 0 0 0 0 rgba(6, 121, 99, 0); }
}
@media (max-width: 900px) {
  .utility-bar { display: none; }
}

/* ============ Header ============ */
.showcase-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.showcase-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo img { height: 50px; width: auto; }
.showcase-nav { display: flex; gap: 32px; align-items: center; }
.showcase-nav a {
  font-size: 14px; font-weight: 500;
  color: var(--graphite);
  transition: color var(--t-fast);
  position: relative;
}
.showcase-nav a:not(.nav-cta):hover { color: var(--ink); }
.showcase-nav a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform var(--t-base) var(--ease-out);
}
.showcase-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.showcase-nav .nav-cta {
  background: var(--ink); color: var(--paper);
  padding: 10px 18px; border-radius: 999px;
  font-weight: 600;
  transition: background var(--t-fast);
}
.showcase-nav .nav-cta:hover { background: var(--red); }
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); transition: transform var(--t-base);
}
@media (max-width: 900px) {
  .showcase-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); flex-direction: column; padding: 24px var(--pad); gap: 16px; border-bottom: 1px solid var(--line); }
  .showcase-nav.open { display: flex; }
  .menu-toggle { display: flex; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex; align-items: center;
  overflow: hidden;
  padding: 96px 0 80px;
  isolation: isolate;
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(to right, rgba(10, 12, 15, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 12, 15, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: multiply;
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 500;
  color: var(--steel);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 32px;
}
.eyebrow-line { display: inline-block; width: 40px; height: 1px; background: var(--red); }
.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(3rem, 10vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, var(--red) 0%, var(--red-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-glass {
  position: relative;
  display: inline-block;
  font-weight: 700;
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-glass::after {
  content: ''; position: absolute;
  top: 0.05em; right: -0.3em;
  width: 0.6em; height: 0.6em;
  background: radial-gradient(circle, rgba(9, 123, 170, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--graphite);
  max-width: 640px;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 12px; margin-bottom: 80px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px;
  font-size: 15px; font-weight: 600;
  transition: all var(--t-fast) var(--ease-out);
  position: relative; overflow: hidden;
  text-decoration: none;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--red); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.hero-meta {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--steel);
}
.meta-item { display: flex; align-items: baseline; gap: 6px; }
.meta-num { font-size: 28px; font-weight: 700; color: var(--ink); line-height: 1; }
.meta-label { font-size: 11px; }
.meta-divider { width: 1px; height: 32px; background: var(--line); }
.hero-scroll {
  position: absolute; bottom: 24px; left: var(--pad);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--steel);
}
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--red), transparent); animation: scroll-pulse 2.4s var(--ease-out) infinite; }
@keyframes scroll-pulse { 0%, 100% { transform: scaleY(0.4); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }

/* ============ Reveal animation ============ */
[data-reveal] {
  opacity: 0; transform: translateY(40px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
[data-reveal].visible {
  opacity: 1; transform: translateY(0);
}

/* ============ Ticker ============ */
.ticker {
  background: var(--ink);
  color: var(--paper);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
}
.ticker-track {
  display: flex; gap: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
}
.ticker-track span { flex-shrink: 0; }
.ticker-dot { color: var(--red); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ Section heads ============ */
.section-head {
  text-align: center;
  margin: 0 auto 80px;
  max-width: 720px;
}
.section-num {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--ink);
}
.section-lede {
  font-size: 1.05rem;
  color: var(--graphite);
  line-height: 1.6;
}

/* ============ Variants ============ */
.variants { padding: 140px 0; }
.variant-stack { display: flex; flex-direction: column; gap: 120px; }
.variant-card {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 48px; align-items: center;
}
.variant-card.reverse { grid-template-columns: 1fr 1.5fr; }
.variant-card.reverse .variant-frame { order: 2; }
.variant-card.reverse .variant-spec { order: 1; }
.variant-frame {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--ink-2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(10, 12, 15, 0.3), 0 0 0 1px rgba(10, 12, 15, 0.05);
  transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t-slow) var(--ease-out);
}
.variant-frame:hover { transform: translateY(-4px); box-shadow: 0 40px 80px -20px rgba(10, 12, 15, 0.4), 0 0 0 1px rgba(10, 12, 15, 0.08); }
.variant-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  transform: scale(1);
  transform-origin: top left;
}
.variant-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(10, 12, 15, 0.5) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--t-base) var(--ease-out);
  pointer-events: none;
}
.variant-frame:hover .variant-overlay { opacity: 1; }
.overlay-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: var(--paper); color: var(--ink);
  border-radius: 999px; font-size: 12px; font-weight: 600;
  pointer-events: auto;
  transition: background var(--t-fast);
}
.overlay-btn:hover { background: var(--red); color: var(--paper); }
.variant-spec { padding: 16px 8px; }
.spec-num {
  font-family: 'Fraunces', serif;
  font-size: 6rem; font-weight: 300;
  line-height: 0.9;
  color: var(--line);
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.spec-meta { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.spec-codename {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); font-weight: 600;
}
.spec-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--steel);
}
.spec-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.spec-desc {
  font-size: 15px; line-height: 1.6;
  color: var(--graphite);
  margin-bottom: 24px;
}
.spec-list { display: flex; flex-direction: column; gap: 8px; }
.spec-list > div { display: flex; gap: 16px; font-size: 13px; }
.spec-list dt { color: var(--steel); min-width: 80px; font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; padding-top: 2px; }
.spec-list dd { color: var(--ink); font-weight: 500; }
@media (max-width: 900px) {
  .variant-card, .variant-card.reverse { grid-template-columns: 1fr; }
  .variant-card.reverse .variant-frame, .variant-card.reverse .variant-spec { order: 0; }
  .variant-stack { gap: 80px; }
}

/* ============ Compare ============ */
.compare { padding: 140px 0; background: var(--smoke); }
.compare-grid {
  display: grid;
  grid-template-columns: 100px repeat(5, 1fr);
  gap: 4px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.compare-cell {
  background: var(--paper);
  aspect-ratio: 9/16;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 16px 8px;
  position: relative;
  overflow: hidden;
}
.compare-cell.head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  aspect-ratio: auto; padding: 20px 8px;
  background: var(--ink); color: var(--paper);
  border-bottom: 2px solid var(--red);
}
.compare-cell.row-head {
  aspect-ratio: auto; padding: 16px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--steel);
  background: var(--smoke);
  align-items: flex-start; justify-content: flex-start;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}
.compare-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.compare-cell a { display: block; width: 100%; height: 100%; }
.compare-cell a:hover img { transform: scale(1.08); }
@media (max-width: 768px) {
  .compare-grid { grid-template-columns: 60px repeat(5, 1fr); }
  .compare-cell.head { font-size: 9px; }
  .compare-cell.row-head { font-size: 9px; }
}

/* ============ Performance ============ */
.performance { padding: 140px 0; background: var(--ink); color: var(--paper); }
.performance .section-title { color: var(--paper); }
.performance .section-lede { color: var(--ice); }
.performance .section-num { color: var(--red); }
.perf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-3);
  border-left: 1px solid var(--ink-3);
}
.perf-stat {
  padding: 56px 32px;
  border-right: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
  transition: background var(--t-base) var(--ease-out);
}
.perf-stat:hover { background: var(--ink-2); }
.perf-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--paper);
  letter-spacing: -0.04em;
  display: inline-block;
}
.perf-suffix {
  position: absolute; top: 56px; margin-left: -8px;
  font-size: 1.5rem; color: var(--red); font-weight: 600;
}
.perf-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ice);
  margin-top: 16px;
}
@media (max-width: 900px) {
  .perf-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .perf-grid { grid-template-columns: 1fr; }
}

/* ============ Vote ============ */
.vote { padding: 140px 0; }
.vote-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.vote-card {
  position: relative;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 32px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: all var(--t-base) var(--ease-out);
  text-align: center;
}
.vote-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(10, 12, 15, 0.15);
}
.vote-card.selected {
  background: var(--ink); color: var(--paper);
  border-color: var(--ink);
}
.vote-card.selected .vote-tag { color: var(--ice); }
.vote-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem; font-weight: 300;
  color: var(--line);
}
.vote-card.selected .vote-num { color: var(--red); }
.vote-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.vote-tag {
  font-size: 11px;
  color: var(--steel);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.vote-result {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--graphite);
  min-height: 24px;
  letter-spacing: 0.06em;
}
@media (max-width: 900px) {
  .vote-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ Contact ============ */
.contact { padding: 140px 0; background: var(--smoke); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 20px 0;
}
.contact-lede {
  font-size: 1.05rem;
  color: var(--graphite);
  margin-bottom: 40px;
}
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 48px; }
.contact-list li { display: grid; grid-template-columns: 120px 1fr; gap: 12px 16px; align-items: baseline; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.ci-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--steel); padding-top: 2px; }
.ci-value { font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.ci-value:hover { color: var(--red); }
.ci-text { font-size: 0.95rem; color: var(--graphite); font-weight: 400; }
.ci-meta { grid-column: 2; font-size: 13px; color: var(--steel); }
.trust-strip { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; padding: 24px 0; border-top: 1px solid var(--line); }
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-num { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 500; color: var(--ink); }
.trust-label { font-size: 12px; color: var(--graphite); }
.trust-item img { width: 80px; height: auto; }
.contact-form {
  background: var(--paper);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px -20px rgba(10, 12, 15, 0.1);
  border: 1px solid var(--line);
}
.form-title {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem; font-weight: 500;
  margin-bottom: 8px;
}
.form-sub { color: var(--graphite); margin-bottom: 24px; }
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row label { font-size: 12px; font-weight: 500; color: var(--graphite); }
.form-row input, .form-row select, .form-row textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color var(--t-fast);
  font-family: inherit;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.btn-form { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: 11px; color: var(--steel); text-align: center; margin-top: 12px; }
.form-success { margin-top: 16px; padding: 12px; background: rgba(6, 121, 99, 0.1); color: var(--green); border-radius: 8px; font-size: 14px; font-weight: 500; text-align: center; }
.hp { position: absolute; left: -9999px; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-list li { grid-template-columns: 100px 1fr; }
}

/* ============ Footer ============ */
.showcase-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ink-3);
}
.footer-brand img { margin-bottom: 16px; }
.footer-brand p { color: var(--steel); font-size: 14px; max-width: 280px; }
.showcase-footer h4 { font-size: 12px; font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; color: var(--ice); }
.showcase-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.showcase-footer a { color: var(--paper); font-size: 14px; transition: color var(--t-fast); }
.showcase-footer a:hover { color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--steel); }
.footer-bottom p { font-size: 12px; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
