/* ================================================
   NEWSPAPER PHOTOBOOTH — "FRONT PAGE" EDITION
   Fraunces (display) + Inter (body) + JetBrains Mono (meta)
   Dark newsprint with cream + sepia red accents
   ================================================ */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.sr-only:focus { position: fixed; top: 1rem; left: 1rem; width: auto; height: auto; clip: auto; padding: 0.75rem 1.25rem; background: var(--ink); color: var(--paper); z-index: 200; }

/* --- Tokens (matched to go.instamedia.my/INFrame/) --- */
:root {
  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body: 'Source Sans 3', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  /* INFrame palette — pure black + lime accent */
  --bg: #030303;
  --bg-alt: #0d0d0d;
  --surface: #141414;
  --surface-2: #1a1a1a;
  --paper: #f0f0ec;          /* off-white — for paper mockup only */
  --paper-warm: #e8e8e0;
  --ink: #030303;
  --fg: #f0f0ec;
  --fg-mid: #a8a8a0;
  --fg-muted: #5c5c56;
  --rule: rgba(240,240,236,0.08);
  --rule-strong: #222;
  --rule-light: rgba(3,3,3,0.10);
  --accent: #daf68f;         /* lime green — primary CTA */
  --accent-hover: #c4dd7a;
  --accent-ink: #1a2008;     /* dark green text on lime */
  --accent-glow: rgba(218,246,143,0.22);
  --accent-dim: rgba(218,246,143,0.10);
  --gold: #4d65ff;           /* blue — secondary accent */

  --w-max: 1240px;
  --w-narrow: 720px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 10vw, 10rem);
  --nav-h: 64px;
  --radius: 4px;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.4vw + 0.9rem, 1.125rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--fg-mid);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* --- Utilities --- */
.container {
  max-width: var(--w-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow {
  max-width: var(--w-narrow);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.section-tag::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.25rem);
  font-weight: 700;
  font-variation-settings: 'opsz' 100;
  color: var(--fg);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.section-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

/* Reveals */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].visible { opacity: 1; transform: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* --- Buttons --- */
.btn-fill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.95rem 1.6rem;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--radius);
  min-height: 48px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.25s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-fill:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 24px var(--accent-glow); }
.btn-fill:active { transform: none; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.95rem 1.6rem;
  color: var(--fg);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  min-height: 48px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--paper); background: rgba(240,240,236,0.04); }

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--w-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.nav-logo img { height: 26px; width: auto; opacity: 0.98; transition: opacity 0.2s; }
.nav-logo:hover img { opacity: 1; }
.nav-scrolled {
  background: rgba(3,3,3,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--rule);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }
.nav-cta {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.55rem 1.15rem;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg);
  transition: transform 0.25s, opacity 0.2s;
}
.nav-open .nav-toggle span:first-child { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:last-child { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 100;
  }
  .nav-open .nav-menu { transform: none; }
  .nav-link { font-size: 1.125rem; color: var(--fg); }
  .nav-cta { font-size: 1rem; padding: 0.75rem 2rem; }
}

/* ================================================
   HERO — Editorial split with paper mockup
   ================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 2.5rem);
  padding-bottom: var(--section-y);
  background: var(--bg);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 35%, rgba(218,246,143,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--w-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hero-masthead {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-masthead-edition { color: var(--accent); }
.hero-masthead-rule {
  flex-shrink: 0;
  width: 28px;
  height: 1px;
  background: var(--rule-strong);
}
.hero-masthead-tag { color: var(--fg-muted); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw + 0.5rem, 5rem);
  font-weight: 900;
  font-variation-settings: 'opsz' 144;
  color: var(--fg);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}
.hero-title-line { display: block; }
.hero-title-italic {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
  color: var(--paper-warm);
  margin-top: 0.1em;
}
.hero-title-italic em {
  font-style: italic;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(218,246,143,0.4);
  text-decoration-thickness: 3px;
  text-underline-offset: 0.12em;
}
.hero-title-seo {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  line-height: 1.5;
  text-transform: none;
  font-style: normal;
}
.hero-sub {
  font-size: clamp(1rem, 0.45vw + 0.92rem, 1.125rem);
  color: var(--fg-mid);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
}
.hero-proof li {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.hero-proof li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hero paper mockup */
.hero-media {
  position: relative;
  perspective: 1400px;
  transform-style: preserve-3d;
  animation: hero-paper-in 0.9s ease-out both;
}
.hero-paper {
  position: relative;
  background: var(--paper);
  border-radius: 2px;
  padding: 1.4rem 1.4rem 1.6rem;
  box-shadow:
    0 1px 0 rgba(240,240,236,0.06),
    0 25px 60px rgba(0,0,0,0.55),
    0 50px 100px rgba(0,0,0,0.4);
  transform: rotate(-1.8deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0,0,0,0.06);
}
.hero-paper::after {
  /* Subtle paper texture */
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  border-radius: inherit;
}
.hero-media:hover .hero-paper { transform: rotate(0deg) translateY(-4px); }
.hero-paper-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
  padding-bottom: 0.7rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid rgba(3,3,3,0.4);
  border-top: 3px solid var(--ink);
  padding-top: 0.7rem;
}
.hero-paper img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1px;
}
.hero-paper-byline {
  position: absolute;
  bottom: -1.2rem;
  right: 1.4rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.55rem 0.95rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.hero-paper-byline strong { display: block; font-weight: 600; }
.hero-paper-byline span { color: var(--accent); font-size: 0.66rem; }

@keyframes hero-paper-in {
  from { opacity: 0; transform: translateY(40px) rotate(-4deg); }
  to { opacity: 1; transform: translateY(0) rotate(-1.8deg); }
}

@media (max-width: 900px) {
  .hero { padding-top: calc(var(--nav-h) + 1.5rem); padding-bottom: clamp(3rem, 8vw, 5rem); }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
  .hero-sub { max-width: 100%; margin-bottom: 1.75rem; }
  .hero-media { max-width: 360px; margin-bottom: 0.5rem; }
  .hero-title-seo { font-size: 0.7rem; letter-spacing: 0.04em; margin-top: 0.85rem; }
  .hero-masthead { margin-bottom: 1.25rem; flex-wrap: wrap; gap: 0.55rem; }
  .hero-masthead-rule { display: none; }
  .hero-proof { gap: 0.7rem 1.25rem; padding-top: 1.25rem; }
  .hero-actions { gap: 0.6rem; margin-bottom: 1.5rem; }
}
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-fill, .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .hero-inner { position: static; }
  .hero-text { position: relative; z-index: 2; }
  .hero-media {
    position: absolute;
    inset: 0;
    max-width: none;
    margin: 0;
    z-index: 0;
    opacity: 0.75;
    pointer-events: none;
    animation: none;
    filter: blur(2px) saturate(0.9) brightness(1.1);
  }
  .hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,8,8,0.1) 0%, rgba(8,8,8,0.45) 100%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-paper {
    height: 100%;
    transform: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
  }
  .hero-paper::after { display: none; }
  .hero-paper img {
    height: 100%;
    width: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }
  .hero-paper-meta,
  .hero-paper-byline { display: none; }
  .hero-title { font-size: clamp(2.25rem, 9vw, 3rem); }
  .hero-sub { font-size: 0.95rem; line-height: 1.6; color: #d8d8d2; }
  .hero-proof li { font-size: 0.65rem; color: #c4c4be; }
  .hero-masthead-tag { color: #c4c4be; }
  .hero-title-seo { color: #c4c4be; }
}
@media (max-width: 380px) {
  .hero-title { font-size: 2.1rem; letter-spacing: -0.025em; }
  .hero-actions .btn-ghost { font-size: 0.85rem; padding: 0.85rem 1rem; }
}

/* ================================================
   LOGOS — Single oversized carousel
   ================================================ */
.logos {
  padding-block: 3.5rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  background: var(--bg);
  position: relative;
}
.logos-headline {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  padding-inline: var(--gutter);
}
.logos-headline strong {
  color: var(--paper);
  font-weight: 600;
}
.logos-track {
  display: flex;
  width: max-content;
  animation: scroll-logos 90s linear infinite;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.logos-slide {
  display: flex;
  align-items: center;
  gap: clamp(4rem, 7vw, 6.5rem);
  padding-inline: clamp(2rem, 3.5vw, 3.25rem);
}
.logos-slide img {
  height: 96px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1) brightness(2.2);
  transition: opacity 0.3s, filter 0.3s;
}
.logos-slide img:hover { opacity: 1; filter: grayscale(0) brightness(1.05); }

@keyframes scroll-logos { to { transform: translateX(-50%); } }

@media (max-width: 767px) {
  .logos { padding-block: 2.5rem; }
  .logos-slide img { height: 64px; }
  .logos-slide { gap: clamp(2.5rem, 5vw, 4rem); }
  .logos-track { animation-duration: 60s; }
}

/* ================================================
   STATS
   ================================================ */
.stats {
  padding-block: var(--section-y);
  background: var(--bg-alt);
  position: relative;
}
.stats::before, .stats::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--rule);
}
.stats::before { top: 0; }
.stats::after { bottom: 0; }
.stats .container {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.stat { flex: 1; padding-inline: clamp(1rem, 2vw, 2rem); }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw + 1rem, 4.75rem);
  font-weight: 900;
  font-variation-settings: 'opsz' 144;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.6rem;
}
.stat-num-and {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-size: 0.7em;
  margin-inline: 0.05em;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  line-height: 1.65;
}
.stat-label em {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--paper-warm);
  margin-top: 0.3rem;
}
.stat-rule {
  width: 1px;
  align-self: stretch;
  background: var(--rule);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .stats .container { flex-wrap: wrap; }
  .stat { flex: 1 1 calc(50% - 1px); padding: 1.5rem; min-width: 200px; }
  .stat-rule { display: none; }
}
@media (max-width: 540px) {
  .stat { flex: 1 1 100%; text-align: left; padding: 1.5rem 1rem; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: none; }
}

/* ================================================
   PROBLEM
   ================================================ */
.problem {
  padding-block: var(--section-y);
  background: var(--surface);
  color: var(--fg-mid);
  position: relative;
}
.problem-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.problem-tag::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
}
.problem-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw + 0.5rem, 2.85rem);
  font-weight: 700;
  font-variation-settings: 'opsz' 144;
  color: var(--fg);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 2.25rem;
}
.problem-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.problem-body p { font-size: 1.0625rem; line-height: 1.75; }
.problem-body p + p { margin-top: 1.4rem; }
.problem-body strong { color: var(--paper); font-weight: 600; }
.problem-highlight {
  color: var(--paper-warm);
  border-left: 3px solid var(--accent);
  padding-left: 1.4rem;
  font-size: 1.125rem !important;
  line-height: 1.7 !important;
  font-style: italic;
}

/* ================================================
   PRINT TECH — Laser vs Inkjet
   ================================================ */
.print-tech {
  padding-block: var(--section-y);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.print-tech::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 100%, rgba(218,246,143,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.print-tech > .container { position: relative; z-index: 1; }
.print-tech-head {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.print-tech-head .section-heading { margin-bottom: 0.75rem; }

/* Comparison table — light, scannable */
.cmp-table {
  width: 100%;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
}
.cmp-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.4fr;
  align-items: stretch;
  border-bottom: 1px solid var(--rule);
  transition: background 0.2s;
}
.cmp-row:last-child { border-bottom: none; }
.cmp-row:hover:not(.cmp-head) { background: rgba(240,240,236,0.015); }

.cmp-cell {
  padding: 1.15rem 1.3rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--fg-mid);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-right: 1px solid var(--rule);
}
.cmp-cell:last-child { border-right: none; }

.cmp-feature {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg);
}

.cmp-them {
  color: var(--fg-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(240,240,236,0.15);
  text-decoration-thickness: 1px;
}
.cmp-us {
  color: var(--fg);
  font-weight: 500;
  background: linear-gradient(90deg, rgba(218,246,143,0.04), transparent);
}

.cmp-x, .cmp-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
}
.cmp-x {
  background: rgba(240,240,236,0.05);
  color: var(--fg-muted);
}
.cmp-check {
  background: var(--accent);
  color: var(--accent-ink);
}

/* Header row */
.cmp-head {
  background: var(--bg);
  border-bottom: 1px solid var(--rule-strong);
}
.cmp-head:hover { background: var(--bg) !important; }
.cmp-head .cmp-cell {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  padding: 1.4rem 1.3rem 1.2rem;
}
.cmp-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.cmp-us-head .cmp-tag { color: var(--accent); }
.cmp-headline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  font-variation-settings: 'opsz' 100;
  color: var(--fg);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.cmp-them-head .cmp-headline { color: var(--fg-mid); }

@media (max-width: 720px) {
  .cmp-table {
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }
  .cmp-row {
    grid-template-columns: 1fr;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    margin-bottom: 0;
    background: var(--bg-alt);
    overflow: hidden;
  }

  /* Feature label = top header strip on mobile */
  .cmp-feature {
    padding: 0.55rem 1rem;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    border-right: none;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  /* Industry / Instamedia rows — label STACKS ABOVE content row */
  .cmp-them, .cmp-us {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 0.6rem;
    row-gap: 0.35rem;
    padding: 0.6rem 1rem 0.7rem !important;
    border-right: none;
    border-bottom: 1px solid var(--rule);
    line-height: 1.4;
    font-size: 0.92rem;
  }
  .cmp-them { background: rgba(240,240,236,0.015); }
  .cmp-us { background: linear-gradient(90deg, rgba(218,246,143,0.05), rgba(218,246,143,0.02) 60%); }
  .cmp-row > .cmp-cell:last-child { border-bottom: none; }

  /* Mini-label sits ABOVE the icon+text row (full-width flex item) */
  .cmp-them::before, .cmp-us::before {
    content: 'Industry';
    position: static;
    transform: none;
    flex: 1 0 100%;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fg-muted);
    margin: 0;
    line-height: 1;
  }
  .cmp-us::before { content: 'Instamedia'; color: var(--accent); }

  /* Smaller icon on mobile to keep rows compact */
  .cmp-x, .cmp-check {
    width: 18px;
    height: 18px;
    font-size: 0.75rem;
  }

  /* Hide the original column-header row on mobile */
  .cmp-head { display: none; }
}

.print-tech-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.spec {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.spec:last-child { border-right: none; }
.spec-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3rem);
  font-weight: 900;
  font-variation-settings: 'opsz' 144;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.spec-unit {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}
.spec-label {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--fg-mid);
}

@media (max-width: 900px) {
  .print-tech-specs { grid-template-columns: 1fr 1fr; }
  .spec:nth-child(2) { border-right: none; }
  .spec:nth-child(1), .spec:nth-child(2) { border-bottom: 1px solid var(--rule); }
}
@media (max-width: 540px) {
  .print-tech-specs { grid-template-columns: 1fr; }
  .spec { border-right: none; border-bottom: 1px solid var(--rule); }
  .spec:last-child { border-bottom: none; }
}

/* ================================================
   PROCESS
   ================================================ */
.process {
  padding-block: var(--section-y);
  background: var(--bg);
}
.process-list { counter-reset: step; }
.process-item {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--rule);
  transition: background 0.3s;
}
.process-item:first-child { border-top: 1px solid var(--rule); }
.process-item:hover { background: rgba(240,240,236,0.015); }
.process-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
  width: 3rem;
  padding-top: 0.25em;
  letter-spacing: 0.05em;
}
.process-item h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  font-variation-settings: 'opsz' 100;
  color: var(--fg);
  margin-bottom: 0.55rem;
  letter-spacing: -0.015em;
}
.process-item p { font-size: 1rem; color: var(--fg-mid); line-height: 1.75; max-width: 720px; }

/* ================================================
   EDITIONS — Bento grid
   ================================================ */
.editions {
  padding-block: var(--section-y);
  background: var(--bg-alt);
}
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 0.75rem;
  perspective: 1200px;
}
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; }
.bento-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--rule);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  background: var(--surface);
}
.bento-item img,
.bento-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.bento-item:hover img,
.bento-item:hover video { transform: scale(1.05); }
.bento-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(3,3,3,0.95) 0%, rgba(3,3,3,0.55) 45%, transparent 90%);
  color: #fff;
  transform: translateZ(30px);
  transition: background 0.35s;
}
.bento-format {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.bento-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  font-variation-settings: 'opsz' 100;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.bento-large .bento-overlay h3 { font-size: 1.85rem; }
.bento-overlay p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(240,240,236,0.78);
  line-height: 1.55;
  margin-bottom: 0.65rem;
  max-width: 92%;
}
.bento-tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 500;
}

/* Shine on tilt */
.bento-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(218,246,143,0.12) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 2;
}
.bento-item:hover::after { opacity: 1; }

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
  .bento-large { grid-column: span 2; grid-row: span 1; }
  .bento-wide { grid-column: span 2; }
}
@media (max-width: 540px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .bento-large, .bento-wide { grid-column: span 1; grid-row: span 1; }
  .bento-overlay h3, .bento-large .bento-overlay h3 { font-size: 1.35rem; }
}

/* ================================================
   USE CASES — Event types band
   ================================================ */
.usecases {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.usecases-heading {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.4vw + 0.7rem, 1.7rem);
  font-weight: 700;
  font-variation-settings: 'opsz' 100;
  color: var(--fg);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 1.6rem;
  max-width: 720px;
}
.usecases-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
}
.usecases-list li {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--fg-mid);
  padding-left: 1.4rem;
  position: relative;
}
.usecases-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.usecases-list strong { color: var(--fg); font-weight: 600; }

@media (max-width: 720px) {
  .usecases-list { grid-template-columns: 1fr; }
}

/* ================================================
   BOOTH STRUCTURES — 4 deployment cards
   ================================================ */
.booths {
  padding-block: var(--section-y);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.booths::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(77,101,255,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.booths > .container { position: relative; z-index: 1; }
.booths .section-heading { margin-bottom: 1rem; }
.booths .section-heading em { color: var(--accent); }
.booths-lede {
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.125rem);
  line-height: 1.7;
  color: var(--fg-mid);
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.booths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.booth-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.3s;
}
.booth-card:hover {
  transform: translateY(-3px);
  border-color: var(--rule-strong);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.booth-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: radial-gradient(ellipse at center, var(--bg-alt) 0%, var(--bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.booth-card-media img,
.booth-card-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.9rem;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.booth-card:hover .booth-card-media img,
.booth-card:hover .booth-card-media video { transform: scale(1.05); }

/* Video card — real footage, fill the frame (no padding/contain) */
.booth-card-media-video {
  background: var(--bg-alt);
}
.booth-card-media-video video {
  object-fit: cover;
  padding: 0;
}
.booth-card-media-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,3,3,0.35) 0%, transparent 40%);
  pointer-events: none;
}
.booth-card-tag {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  padding: 0.25rem 0.55rem;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  box-shadow: 0 4px 12px var(--accent-glow);
}

.booth-card-body {
  padding: 1.05rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.booth-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  font-variation-settings: 'opsz' 100;
  color: var(--fg);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.booth-card-desc {
  font-size: 0.825rem;
  color: var(--fg-mid);
  line-height: 1.5;
  margin-bottom: 0.15rem;
}
.booth-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 0.65rem;
  border-top: 1px solid var(--rule);
}
.booth-card-specs li {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 0.22rem 0.45rem;
  background: rgba(240,240,236,0.04);
  border-radius: 3px;
}

.booths-foot {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  background: var(--bg-alt);
  font-size: 0.875rem;
  color: var(--fg-mid);
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .booths-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}
@media (max-width: 540px) {
  .booths-grid { grid-template-columns: 1fr; }
  .booth-card-media { aspect-ratio: 4 / 3; }
}

/* ================================================
   CASE STUDY
   ================================================ */
.case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--bg);
}
.case-image { position: relative; overflow: hidden; }
.case-image img { width: 100%; height: 100%; object-fit: cover; }
.case-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(3,3,3,0.5) 100%);
  pointer-events: none;
}
.case-content {
  background: var(--surface);
  color: var(--fg-mid);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-content .section-tag { color: var(--accent); }
.case-client {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  font-variation-settings: 'opsz' 144;
  color: var(--fg);
  margin-bottom: 0.4rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.case-subhead {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 2.5rem;
}
.case-detail + .case-detail { margin-top: 1.5rem; }
.case-detail h3 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.case-detail p { line-height: 1.75; color: var(--fg-mid); }
.case-metrics {
  display: flex;
  gap: 2rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}
.case-metric { flex: 1 1 140px; }
.case-metric-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.8vw, 2.4rem);
  font-weight: 900;
  font-variation-settings: 'opsz' 144;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.case-metric span:last-child {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

@media (max-width: 900px) {
  .case { grid-template-columns: 1fr; min-height: auto; }
  .case-image { aspect-ratio: 4 / 3; max-height: 360px; }
}

/* ================================================
   WHY
   ================================================ */
.why {
  padding-block: var(--section-y);
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 3.5vw, 3rem);
}
.why-col {
  padding: 2rem 1.6rem 1.85rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(240,240,236,0.012), transparent);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  position: relative;
}
.why-col:hover {
  border-color: var(--rule-strong);
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(218,246,143,0.04), transparent);
}
.why-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  font-variation-settings: 'opsz' 100;
  letter-spacing: -0.01em;
  color: var(--accent-ink);
  background: var(--accent);
  padding: 0.35rem 0.7rem;
  border-radius: 3px;
  margin-bottom: 1.15rem;
  line-height: 1;
  white-space: nowrap;
}
.why-col h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  font-variation-settings: 'opsz' 100;
  color: var(--fg);
  margin-bottom: 0.7rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.why-col p { font-size: 0.95rem; color: var(--fg-mid); line-height: 1.7; }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ================================================
   CONTACT — Dark (matching INFrame)
   ================================================ */
.contact {
  padding-block: var(--section-y);
  background: var(--bg);
  color: var(--fg-mid);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(218,246,143,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.contact > .container { position: relative; z-index: 1; }
.contact .section-tag { color: var(--accent); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 700;
  font-variation-settings: 'opsz' 144;
  color: var(--fg);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.contact-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.contact-sub {
  color: var(--fg-mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.contact-bullets {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.contact-bullets li {
  font-size: 0.95rem;
  color: var(--fg);
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.6;
}
.contact-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
}

.form {
  background: var(--surface);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  border: 1px solid var(--rule-strong);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.form-full { margin-bottom: 0.85rem; }
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mid);
  margin-bottom: 0.45rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  background: var(--bg-alt);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--fg);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  min-height: 44px;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--fg-muted); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23a8a8a0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.25rem;
}
.form-field textarea { resize: vertical; min-height: 90px; line-height: 1.55; }
.form-btn {
  width: 100%;
  margin-top: 0.65rem;
  background: var(--accent);
  color: var(--accent-ink);
}
.form-btn:hover { background: var(--accent-hover); box-shadow: 0 6px 20px var(--accent-glow); }
.form-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
  margin-top: 0.85rem;
  text-align: center;
}

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ================================================
   FAQ — Dark (matching INFrame)
   ================================================ */
.faq {
  padding-block: var(--section-y);
  background: var(--bg-alt);
  color: var(--fg-mid);
}
.faq .section-tag { color: var(--accent); }
.faq .section-heading { color: var(--fg); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  font-variation-settings: 'opsz' 100;
  color: var(--fg);
  cursor: pointer;
  list-style: none;
  min-height: 56px;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p {
  padding: 0 0 1.4rem;
  font-size: 0.975rem;
  color: var(--fg-mid);
  line-height: 1.75;
  max-width: 90%;
}
.faq-item strong { color: var(--fg); }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--bg);
  padding-block: 2rem;
  border-top: 1px solid var(--rule);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-logo { height: 22px; width: auto; opacity: 0.9; transition: opacity 0.2s; }
.footer-logo:hover { opacity: 1; }
.footer-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-tel,
.footer-mail {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-mid);
  transition: color 0.2s;
}
.footer-tel:hover,
.footer-mail:hover { color: var(--fg); }
.footer-wa {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.2s;
}
.footer-wa:hover { color: var(--accent-hover); }

.footer-meta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}
.footer-meta p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 920px;
}
.footer-meta p + p { margin-top: 0.5rem; }
.footer-meta strong { color: var(--fg-mid); font-weight: 600; }
.footer-meta a { color: var(--accent); transition: color 0.2s; }
.footer-meta a:hover { color: var(--accent-hover); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
}

@media (max-width: 720px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-contact { gap: 1rem; }
}

/* ================================================
   STICKY MOBILE CTA
   ================================================ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 0.625rem var(--gutter);
  background: rgba(3,3,3,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--rule);
  z-index: 99;
  transform: translateY(100%);
  transition: transform 0.3s;
  display: none;
}
.sticky-bar.visible { transform: none; }
.sticky-btn { width: 100%; }

@media (max-width: 767px) {
  .sticky-bar { display: block; }
  body.sticky-active { padding-bottom: 72px; }
}

/* ================================================
   3D TILT
   ================================================ */
[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  [data-tilt], [data-reveal], .hero-paper {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }
  .logos-track { animation: none; }
}

/* ================================================
   MOBILE POLISH PASS
   Tightens spacing, sizing, and touch targets across all sections
   for phones (≤ 767px) and tiny screens (≤ 380px)
   ================================================ */

@media (max-width: 767px) {
  /* Section heading scale */
  .section-heading { margin-bottom: clamp(1.75rem, 5vw, 2.5rem); }
  .section-tag { font-size: 0.68rem; letter-spacing: 0.14em; }
  .section-tag::before { width: 14px; }

  /* Logos — keep usable but smaller */
  .logos { padding-block: 2.25rem; }
  .logos-headline { font-size: 0.66rem; margin-bottom: 1.5rem; }
  .logos-slide { gap: clamp(2rem, 6vw, 3rem); padding-inline: 1.25rem; }
  .logos-slide img { height: 56px; }
  .logos-track { animation-duration: 70s; }

  /* Stats — compact 1-col stack */
  .stats { padding-block: 3rem; }
  .stat { padding: 1.25rem 1rem; text-align: left; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: none; }
  .stat-num { font-size: clamp(2rem, 9vw, 3rem); margin-bottom: 0.4rem; }
  .stat-label { font-size: 0.66rem; }
  .stat-label em { font-size: 0.85rem; }

  /* Problem / Definition — tighter */
  .problem { padding-block: 3rem; }
  .problem-title { font-size: clamp(1.5rem, 6vw, 2rem); margin-bottom: 1.5rem; }
  .problem-body p { font-size: 1rem; line-height: 1.65; }
  .problem-body p + p { margin-top: 1rem; }
  .problem-highlight { padding-left: 1rem; font-size: 1rem !important; line-height: 1.6 !important; }

  /* Print Tech — comparison + specs */
  .print-tech { padding-block: 3rem; }
  .print-tech-head { margin-bottom: 2rem; }
  .cmp-table { margin-bottom: 2rem; }
  .spec { padding: 1.25rem 1.1rem; gap: 0.5rem; }
  .spec-num { font-size: clamp(1.6rem, 7vw, 2.25rem); }
  .spec-label { font-size: 0.82rem; line-height: 1.5; }

  /* Process */
  .process { padding-block: 3rem; }
  .process-item { gap: 1rem; padding-block: 1.25rem; }
  .process-num { width: 2rem; font-size: 0.78rem; }
  .process-item h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
  .process-item p { font-size: 0.9rem; line-height: 1.6; }

  /* Editions bento */
  .editions { padding-block: 3rem; }
  .bento { gap: 0.55rem; grid-auto-rows: 220px; }
  .bento-overlay { padding: 1rem; opacity: 1; background: linear-gradient(to top, rgba(3,3,3,0.92) 0%, rgba(3,3,3,0.5) 55%, rgba(3,3,3,0.1) 100%); }
  .bento-overlay h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
  .bento-large .bento-overlay h3 { font-size: 1.3rem; }
  .bento-overlay p { font-size: 0.78rem; line-height: 1.45; margin-bottom: 0.4rem; }
  .bento-format { font-size: 0.6rem; margin-bottom: 0.4rem; }
  .bento-tag { font-size: 0.62rem; }

  /* Use cases */
  .usecases { padding-block: 3rem; }
  .usecases-heading { font-size: 1.25rem; margin-bottom: 1.25rem; }
  .usecases-list li { font-size: 0.9rem; padding-left: 1.2rem; }
  .usecases-list li::before { width: 6px; height: 6px; top: 0.6em; }

  /* Booth structures */
  .booths { padding-block: 3rem; }
  .booths .section-heading { margin-bottom: 0.75rem; }
  .booths-lede { font-size: 0.95rem; line-height: 1.6; margin-bottom: 2rem; }
  .booth-card-body { padding: 0.95rem 1rem 1.05rem; gap: 0.45rem; }
  .booth-card h3 { font-size: 1.05rem; }
  .booth-card-desc { font-size: 0.82rem; line-height: 1.5; }
  .booths-foot { padding: 1rem 1.15rem; font-size: 0.85rem; }

  /* Case study */
  .case-image { aspect-ratio: 16 / 11; max-height: none; }
  .case-content { padding: 2rem 1.25rem; }
  .case-client { font-size: 1.85rem; margin-bottom: 0.3rem; }
  .case-subhead { font-size: 0.7rem; margin-bottom: 1.75rem; }
  .case-detail h3 { font-size: 0.65rem; }
  .case-detail p { font-size: 0.95rem; line-height: 1.65; }
  .case-metrics { gap: 1.25rem; margin-top: 1.75rem; padding-top: 1.5rem; }
  .case-metric { flex: 1 1 100px; }
  .case-metric-num { font-size: 1.6rem; }

  /* Why */
  .why { padding-block: 3rem; }
  .why-col { padding: 1.4rem 1.25rem 1.35rem; }
  .why-num { font-size: 1rem; padding: 0.3rem 0.6rem; margin-bottom: 0.85rem; }
  .why-col h3 { font-size: 1.15rem; }
  .why-col p { font-size: 0.9rem; line-height: 1.65; }

  /* Contact */
  .contact { padding-block: 3rem; }
  .contact-heading { font-size: clamp(1.5rem, 6vw, 2rem); }
  .contact-sub { font-size: 0.95rem; line-height: 1.6; }
  .contact-bullets li { font-size: 0.9rem; padding-left: 1.35rem; }
  .contact-bullets li::before { width: 7px; height: 7px; }
  .form { padding: 1.25rem; }
  .form-field label { font-size: 0.65rem; }
  .form-field input, .form-field select, .form-field textarea { font-size: 16px; padding: 0.75rem 0.85rem; min-height: 46px; }
  .form-btn { font-size: 0.95rem; padding: 1rem 1.25rem; }
  .form-note { font-size: 0.68rem; }

  /* FAQ */
  .faq { padding-block: 3rem; }
  .faq-item summary { font-size: 0.98rem; padding: 1.05rem 0; min-height: 52px; gap: 0.75rem; }
  .faq-item summary::after { font-size: 1.25rem; }
  .faq-item p { font-size: 0.9rem; line-height: 1.65; max-width: 100%; padding-bottom: 1.05rem; }

  /* Footer */
  .footer { padding-block: 1.5rem; }
  .footer-meta { margin-top: 1.25rem; padding-top: 1.25rem; }
  .footer-meta p { font-size: 0.72rem; line-height: 1.65; }
  .footer-contact { gap: 0.85rem; }
  .footer-tel, .footer-mail, .footer-wa { font-size: 0.85rem; }

  /* Sticky bar — compact */
  .sticky-bar { padding: 0.5rem 1rem; }
  .sticky-btn { min-height: 44px; padding: 0.75rem 1rem; }
  body.sticky-active { padding-bottom: 64px; }
}

/* Tiny screens (older Androids, iPhone SE 1st gen) */
@media (max-width: 380px) {
  :root { --gutter: 1rem; }

  .nav-inner { padding-inline: 1rem; }
  .nav-logo img { height: 22px; }

  .hero-paper-meta span:last-child { display: none; }

  .stat-num { font-size: 1.85rem; }
  .stat-num-and { font-size: 0.8em; }

  .cmp-feature { font-size: 0.62rem; padding: 0.65rem 1rem; }
  .cmp-cell { padding: 0.7rem 1rem; font-size: 0.9rem; }
  .cmp-them, .cmp-us { padding: 0.7rem 1rem 0.8rem !important; }
  .cmp-them::before, .cmp-us::before { font-size: 0.6rem; }

  .bento { grid-auto-rows: 200px; }
  .bento-overlay h3, .bento-large .bento-overlay h3 { font-size: 1.05rem; }

  .booth-card-specs li { font-size: 0.55rem; padding: 0.2rem 0.4rem; }

  .case-content { padding: 1.75rem 1rem; }
  .case-client { font-size: 1.6rem; }

  .form { padding: 1rem; }
  .form-row { gap: 0.65rem; }
  .form-row, .form-full { margin-bottom: 0.65rem; }

  .footer-contact { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* Disable hover-only effects on touch devices (avoids sticky :hover states) */
@media (hover: none) {
  .booth-card:hover { transform: none; }
  .why-col:hover { transform: none; }
  .bento-item:hover img { transform: none; }
  .bento-item:hover::after { opacity: 0; }
  .logos-slide img:hover { opacity: 0.55; filter: grayscale(1) brightness(2.2); }
  [data-tilt] { transform: none !important; }
}
