/* Sentient Robotics — design system v2
   Confident editorial: bold type, real whitespace, alternating dark/light
   sections, no decorative glow/scanline/cursor gimmicks. */

:root {
  /* sampled directly from the logo: dot = blue, wordmark = navy-slate, ring = cool grey */
  --ink:        #0a141f;
  --ink-2:      #101d2b;
  --paper:      #ffffff;
  --paper-alt:  #f2f6fa;
  --slate:      #22303c;
  --steel:      #55697a;
  --steel-2:    #8a9cac;
  --fog:        rgba(255,255,255,.72);
  --mist:       rgba(255,255,255,.46);
  --blue:       #0096e0;
  --blue-deep:  #0077b6;
  --blue-soft:  rgba(0,150,224,.10);
  --line:       rgba(34,48,60,.13);
  --line-soft:  rgba(34,48,60,.07);
  --line-dark:  rgba(255,255,255,.16);
  --line-dark-soft: rgba(255,255,255,.08);
  --max: 1360px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--steel);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding-inline: 64px; }

h1, h2, h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--slate);
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
.section-dark .eyebrow { color: #6bb6f8; }

.data {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
}

/* ─── SCROLL PROGRESS ─────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--blue-deep));
  z-index: 1200; transition: width .1s linear;
}

/* ─── INTRO VIDEO SPLASH (plays once, no controls) ── */
#video-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: #000;
  transition: opacity .8s ease, visibility .8s ease;
}
#video-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#intro-video {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ─── NAV ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 64px;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, padding .3s ease;
}
nav.on-dark { --nav-ink: #fff; }
nav.on-light { --nav-ink: var(--slate); }
nav.scrolled {
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--line);
  padding: 14px 64px;
}
nav.scrolled .nav-link, nav.scrolled .nav-mark { color: var(--slate); }

.nav-brand { display: flex; align-items: center; text-decoration: none; }
.nav-logo { height: 34px; width: auto; }
.nav-logo.dark-variant { display: none; }
nav.on-dark:not(.scrolled) .nav-logo.light-variant { display: block; }
nav.on-dark:not(.scrolled) .nav-logo.dark-variant { display: none; }
nav.on-light .nav-logo.light-variant,
nav.scrolled .nav-logo.light-variant { display: none; }
nav.on-light .nav-logo.dark-variant,
nav.scrolled .nav-logo.dark-variant { display: block; }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-link {
  font-size: 14px; font-weight: 500; text-decoration: none;
  color: var(--nav-ink, var(--slate));
  transition: opacity .2s;
  opacity: .85;
}
.nav-link:hover { opacity: 1; }
.nav-link.current { opacity: 1; }
.nav-link.current { text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 2px; text-decoration-color: var(--blue); }

.nav-cta {
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  color: #fff; background: var(--ink);
  padding: 12px 24px;
  transition: background .2s;
}
nav.on-dark:not(.scrolled) .nav-cta { background: #fff; color: var(--ink); }
.nav-cta:hover { background: var(--blue); color: #fff; }

.nav-burger {
  display: none; width: 24px; height: 16px; position: relative;
  cursor: pointer; border: none; background: none; padding: 0;
}
.nav-burger span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--nav-ink, var(--slate));
  transition: background .2s;
}
nav.scrolled .nav-burger span { background: var(--slate); }
.nav-burger span:nth-child(1) { top: 0; }
.nav-burger span:nth-child(2) { top: 7px; }
.nav-burger span:nth-child(3) { top: 14px; }

.mobile-menu {
  position: fixed; inset: 0; background: var(--ink); z-index: 900;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  transform: translateY(-100%); transition: transform .35s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { color: #fff; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 30px; text-decoration: none; }
.mobile-menu a.current { color: var(--blue); }
.mobile-menu .mm-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; color: #fff; font-size: 30px; line-height: 1; cursor: pointer;
}

/* ─── SECTION SYSTEM ─────────────────────── */
.section-light { background: var(--paper); }
.section-alt   { background: var(--paper-alt); }
.section-dark  { background: var(--ink); color: var(--fog); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .body-text { color: var(--fog); }

.pad { padding: 140px 64px; }
.pad-sm { padding: 100px 64px; }

.marker-wrap { position: relative; overflow: hidden; }
.marker {
  position: relative;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 220px;
  line-height: 1;
  color: var(--slate);
  opacity: .04;
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.section-dark .marker { color: #fff; opacity: .05; }

.kicker {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.kicker .idx { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--blue); letter-spacing: .1em; }
.kicker .rule { width: 32px; height: 1px; background: var(--line); }
.section-dark .kicker .rule { background: var(--line-dark); }

.h-xl { font-size: clamp(40px, 5.4vw, 82px); line-height: .98; }
.h-lg { font-size: clamp(32px, 3.6vw, 54px); line-height: 1.02; }
.h-md { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.1; }

.body-text { font-size: 16px; line-height: 1.75; color: var(--steel); max-width: 560px; }
.body-lg { font-size: 20px; line-height: 1.6; color: var(--steel); max-width: 640px; font-weight: 400; }

/* ─── BUTTONS / LINKS ─────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; padding: 17px 32px;
  border: 1px solid transparent;
  transition: background .3s cubic-bezier(.4,0,.2,1), color .3s, border-color .3s,
              transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1);
}
.btn-solid { background: var(--ink); color: #fff; }
.btn-solid:hover { background: var(--blue); transform: translateY(-3px); box-shadow: 0 14px 28px -8px rgba(0,150,224,.45); }
.btn-solid:active { transform: translateY(-1px); }
.section-dark .btn-solid { background: #fff; color: var(--ink); }
.section-dark .btn-solid:hover { background: var(--blue); color: #fff; box-shadow: 0 14px 28px -8px rgba(0,150,224,.5); }

.btn-outline { border-color: var(--line); color: var(--slate); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); }
.section-dark .btn-outline { border-color: var(--line-dark); color: #fff; }
.section-dark .btn-outline:hover { border-color: #fff; transform: translateY(-3px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; font-weight: 600; font-size: 15px;
  color: var(--slate);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 3px;
  transition: gap .2s, color .2s;
}
.link-arrow:hover { gap: 13px; color: var(--blue-deep); }
.section-dark .link-arrow { color: #fff; }
.section-dark .link-arrow:hover { color: var(--blue); }
.link-arrow svg { width: 14px; height: 14px; }

/* ─── HOME · HERO VIDEO ────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 220px 64px 0;
  max-width: var(--max); margin: 0 auto; width: 100%;
}
.hero-tag { color: #6bb6f8; margin-bottom: 26px; }
.hero-headline {
  font-size: clamp(52px, 8vw, 118px);
  line-height: .92;
  color: #fff;
  max-width: 980px;
}
.hero-headline .accent { color: var(--blue); }
.hero-sub {
  margin-top: 30px;
  font-size: 19px; line-height: 1.7;
  color: var(--fog);
  max-width: 520px;
}
.hero-actions { margin-top: 44px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--line-dark-soft);
  margin-top: 90px;
}
.hero-stat { padding: 30px 64px; border-right: 1px solid var(--line-dark-soft); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 34px; color: #fff; }
.hero-stat-num span { color: var(--blue); font-size: 18px; }
.hero-stat-label { margin-top: 6px; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--mist); }

/* ─── HOME · MANIFESTO STRIP ───────────────── */
.manifesto {
  text-align: center; padding: 130px 64px;
  max-width: 980px; margin: 0 auto;
}
.manifesto p {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: clamp(26px, 3.4vw, 44px); line-height: 1.28;
  color: var(--slate); letter-spacing: -.01em;
}
.manifesto p em { font-style: normal; color: var(--blue); }

/* ─── FEATURE GRID (product / project teasers) ── */
.feature-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; margin-bottom: 64px; flex-wrap: wrap;
}
.tri-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.tri-card {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--paper); padding: 40px; text-decoration: none; color: inherit;
  transition: background .3s, transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
}
.tri-card::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(280px circle at var(--mx,50%) var(--my,50%), var(--blue-soft), transparent 72%);
  opacity: 0; transition: opacity .35s;
}
.tri-card:hover { background: var(--paper-alt); transform: translateY(-6px); box-shadow: 0 24px 48px -20px rgba(34,48,60,.18); }
.tri-card:hover::before { opacity: 1; }
.tri-card .tag { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: var(--blue); letter-spacing: .08em; }
.tri-card h3 { font-size: 21px; margin: 14px 0 12px; }
.tri-card p { font-size: 14px; color: var(--steel); line-height: 1.7; margin-bottom: 22px; }
.tri-card .link-arrow { font-size: 13px; }

/* ─── PROJECT TEASER (dark, home) ─────────────── */
.project-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.project-teaser .visual { aspect-ratio: 4/3; border: 1px solid var(--line-dark); position: relative; overflow: hidden; }
.stat-row { display: flex; gap: 46px; margin-top: 40px; flex-wrap: wrap; }
.stat-row .num { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 30px; color: #fff; }
.stat-row .lbl { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--mist); margin-top: 4px; }

/* ─── CTA BANNER ──────────────────────────── */
.cta-banner { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.cta-banner .actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── STORY PAGE ──────────────────────────── */
.story-hero { padding: 200px 64px 90px; max-width: var(--max); margin: 0 auto; }
.story-hero .h-xl { max-width: 900px; }

.pull-quote {
  border-left: 3px solid var(--blue);
  padding: 4px 0 4px 34px;
  margin: 60px 0;
}
.pull-quote p {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px); line-height: 1.35;
  color: var(--slate);
}
.pull-quote cite {
  display: block; margin-top: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--steel-2); font-style: normal;
}

.timeline { display: flex; flex-direction: column; }
.tl-row { display: grid; grid-template-columns: 140px 1fr; gap: 40px; padding: 34px 0; border-top: 1px solid var(--line); }
.tl-row:last-child { border-bottom: 1px solid var(--line); }
.tl-year { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 26px; color: var(--blue); }
.tl-title { font-size: 17px; font-weight: 700; color: var(--slate); margin-bottom: 6px; }
.tl-body { font-size: 14px; color: var(--steel); max-width: 560px; line-height: 1.7; }

.pillar-list { display: flex; flex-direction: column; }
.pillar-row { display: grid; grid-template-columns: 70px 220px 1fr; gap: 32px; align-items: baseline; padding: 30px 0; border-top: 1px solid var(--line); }
.pillar-row:last-child { border-bottom: 1px solid var(--line); }
.pillar-row .pn { font-family: 'JetBrains Mono', monospace; color: var(--blue); font-size: 13px; }
.pillar-row h4 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 19px; color: var(--slate); }
.pillar-row p { font-size: 14px; color: var(--steel); line-height: 1.7; }

.cap-list { columns: 2; column-gap: 60px; }
.cap-item {
  break-inside: avoid; padding: 22px 0 22px 16px;
  border-top: 1px solid var(--line-dark-soft);
  border-left: 2px solid transparent;
  transition: border-color .3s, padding-left .3s;
}
.cap-item:hover { border-left-color: var(--blue); padding-left: 22px; }
.cap-item:first-child, .cap-item:nth-child(2) { border-top: none; }
.cap-item h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.cap-item p { font-size: 13.5px; color: var(--fog); line-height: 1.7; }

/* ─── PROJECTS PAGE ───────────────────────── */
.proj-hero { padding: 200px 64px 90px; max-width: var(--max); margin: 0 auto; }
.case {
  border-top: 1px solid var(--line);
}
.section-dark .case { border-top-color: var(--line-dark); }
.case-inner {
  max-width: var(--max); margin: 0 auto; padding: 110px 64px;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center;
}
.case:nth-child(even) .case-inner { direction: rtl; }
.case:nth-child(even) .case-inner > * { direction: ltr; }
.case-visual { aspect-ratio: 1; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; background: var(--paper-alt); overflow: hidden; }
.section-dark .case-visual { border-color: var(--line-dark); background: var(--ink-2); }
.case-visual svg { width: 78%; height: 78%; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.case-visual:hover svg { transform: scale(1.06); }
.case-cat { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); }
.case h3 { font-size: clamp(28px,3vw,42px); margin: 16px 0 20px; }
.case-desc { font-size: 15px; line-height: 1.8; color: var(--steel); max-width: 560px; }
.section-dark .case-desc { color: var(--fog); }
.case-specs { display: flex; gap: 40px; margin-top: 34px; flex-wrap: wrap; }
.case-specs .num { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 26px; color: var(--slate); }
.section-dark .case-specs .num { color: #fff; }
.case-specs .lbl { font-family: 'JetBrains Mono', monospace; font-size: 9.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--steel-2); margin-top: 4px; }
.section-dark .case-specs .lbl { color: var(--mist); }
.case-tags { display: flex; gap: 8px; margin-top: 28px; flex-wrap: wrap; }
.case-tags span { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .05em; padding: 6px 12px; border: 1px solid var(--line); color: var(--steel); }
.section-dark .case-tags span { border-color: var(--line-dark); color: var(--fog); }

/* ─── STORE PAGE ──────────────────────────── */
.store-hero { padding: 200px 64px 60px; max-width: var(--max); margin: 0 auto; }
.filter-bar { display: flex; gap: 10px; padding: 0 64px 50px; max-width: var(--max); margin: 0 auto; flex-wrap: wrap; }
.filter-btn {
  font-size: 13px; font-weight: 600; padding: 10px 20px;
  border: 1px solid var(--line); background: transparent; cursor: pointer;
  color: var(--steel); transition: background .2s, color .2s, border-color .2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.store-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); max-width: var(--max); margin: 0 auto 140px; }
.store-card {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--paper); padding: 40px; display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
}
.store-card::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(280px circle at var(--mx,50%) var(--my,50%), var(--blue-soft), transparent 72%);
  opacity: 0; transition: opacity .35s;
}
.store-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -20px rgba(34,48,60,.18); }
.store-card:hover::before { opacity: 1; }
.store-card .tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--blue); letter-spacing: .08em; text-transform: uppercase; }
.store-card h3 { font-size: 19px; margin: 12px 0 10px; line-height: 1.25; }
.store-card .desc { font-size: 13.5px; color: var(--steel); line-height: 1.7; margin-bottom: 24px; flex: 1; }
.store-card .specs { border-top: 1px solid var(--line); padding-top: 16px; display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.store-card .spec { display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: 11px; }
.store-card .spec .k { color: var(--steel-2); }
.store-card .spec .v { color: var(--slate); }
.store-card .price-row { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); }
.store-card .price { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 20px; color: var(--slate); }
.store-card .price small { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 12px; color: var(--steel-2); }
.store-card .quote-btn { font-size: 12px; font-weight: 600; text-decoration: none; color: var(--slate); border-bottom: 2px solid var(--blue); padding-bottom: 2px; }

/* ─── CONTACT PAGE ────────────────────────── */
.contact-hero { padding: 200px 64px 40px; max-width: var(--max); margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; max-width: var(--max); margin: 0 auto; padding: 60px 64px 150px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--steel-2); }
.field input, .field select, .field textarea {
  background: var(--paper-alt); border: 1px solid var(--line);
  color: var(--slate); padding: 15px 16px; font-size: 14px;
  outline: none; width: 100%; transition: border-color .2s, background .2s;
  -webkit-appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--steel-2); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); background: var(--paper); }
.field textarea { height: 110px; resize: none; }

.contact-info { display: flex; flex-direction: column; gap: 36px; }
.info-block .lbl { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.info-block .val { font-size: 18px; font-weight: 600; color: var(--slate); }
.coord-block { border-top: 1px solid var(--line); padding-top: 28px; }
.coord-block .lbl { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: var(--steel-2); letter-spacing: .08em; }
.coord-block .coords { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 30px; color: var(--slate); margin-top: 8px; }

/* ─── FOOTER ──────────────────────────────── */
footer { background: var(--ink); color: var(--fog); padding: 80px 64px 32px; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--line-dark-soft); }
.footer-logo { height: 32px; width: auto; margin-bottom: 18px; }
.footer-tagline { font-size: 14px; color: var(--fog); line-height: 1.7; max-width: 260px; }
.footer-col-title { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--steel-2); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--fog); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--steel-2); letter-spacing: .04em; }

/* ─── REVEAL ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.r1 { transition-delay: .08s; } .r2 { transition-delay: .16s; } .r3 { transition-delay: .24s; } .r4 { transition-delay: .32s; }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1100px) {
  .wrap, nav, .pad, .pad-sm, .hero-inner, .hero-stat, .case-inner, .store-hero, .contact-grid, .footer-grid { padding-left: 32px; padding-right: 32px; }
  nav { padding-left: 32px; padding-right: 32px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .tri-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .project-teaser { grid-template-columns: 1fr; gap: 50px; }
  .case-inner { grid-template-columns: 1fr; gap: 40px; }
  .case:nth-child(even) .case-inner { direction: ltr; }
  .store-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cap-list { columns: 1; }
}
@media (max-width: 640px) {
  .pillar-row { grid-template-columns: 1fr; gap: 8px; }
  .tl-row { grid-template-columns: 1fr; gap: 8px; }
  .store-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; }
}
