/* ==========================================================================
   OUTLAW SYSTEMS CO. — shared stylesheet
   Used by every page. Edit here once, it updates everywhere.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #1a1814;
  --bg2:      #221f1b;
  --bg3:      #2c2823;
  --tan:      #b8a98a;
  --tan-dim:  #7a6e5c;
  --amber:    #c8892a;
  --amber-lt: #d99a3a;
  --white:    #f0ece4;
  --muted:    #8a8070;
  --border:   #3a342c;
  --danger:   #c44a2a;
  --ok:       #5a9c5a;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: 1320px; margin: 0 auto; }

/* ── TYPE HELPERS ── */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--amber); }

/* ── BUTTONS ── */
.btn-primary, .btn-ghost, .btn-outline {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  border: none;
}
.btn-primary, .btn-ghost, .btn-outline {
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.btn-primary {
  background: var(--amber);
  color: var(--bg);
  font-size: 15px;
  letter-spacing: 0.12em;
  padding: 16px 36px;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover { background: var(--amber-lt); transform: translateY(-1px); }
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -60%; width: 35%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-primary:hover::before { left: 130%; }
@media (prefers-reduced-motion: reduce) {
  .btn-primary::before { display: none; }
}
.btn-ghost {
  background: transparent;
  color: var(--tan);
  font-size: 13px;
  letter-spacing: 0.15em;
  padding: 16px 24px;
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--tan-dim); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 12px 22px;
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.btn-block { width: 100%; }
.btn-sm {
  padding: 10px 18px; font-size: 12px;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
}

/* ── PILLS / BADGES ── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--tan);
}
.pill.amber { border-color: var(--amber); color: var(--amber); background: rgba(200,137,42,0.08); }

/* ── NAV ── */
body { padding-top: 84px; }
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 84px;
  background: linear-gradient(rgba(12,11,8,0.7) 0%, rgba(12,11,8,0) 100%);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
nav.scrolled {
  background: rgba(18,16,13,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark-dot {
  width: 9px; height: 9px; flex-shrink: 0;
  background: var(--amber);
  clip-path: polygon(35% 0, 100% 0, 100% 65%, 65% 100%, 0 100%, 0 35%);
}
.logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.14em;
  color: var(--white);
  line-height: 1.1;
}
.logo-text span { display: block; font-size: 9px; font-weight: 400; letter-spacing: 0.32em; color: var(--tan-dim); margin-top: 3px; }
.nav-links { display: flex; gap: 38px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a { position: relative; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -28px; height: 1px;
  background: var(--amber);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s cubic-bezier(.16,.84,.44,1);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* scroll progress bar (injected by main.js) */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--amber); z-index: 200;
  transition: width 0.12s linear;
  pointer-events: none;
}
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-cta {
  background: var(--amber);
  color: var(--bg);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 24px 13px 20px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.nav-cta::after { content: '→'; font-size: 13px; transition: transform 0.2s; }
.nav-cta:hover { background: var(--amber-lt); }
.nav-cta:hover::after { transform: translateX(3px); }
.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.nav-burger span { width: 22px; height: 2px; background: var(--white); display: block; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 22px 60px 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.breadcrumb a { color: var(--tan-dim); text-decoration: none; }
.breadcrumb a:hover { color: var(--amber); }

/* ── HERO (home) — full-bleed cinematic ── */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  margin-top: -84px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-cinematic-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-cinematic-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 32%;
  filter: brightness(0.6) contrast(1.08) saturate(1.05);
  display: block;
  transform: scale(1.05);
}
@keyframes hero-kenburns {
  0%   { transform: scale(1.05) translate3d(0,0,0); }
  100% { transform: scale(1.15) translate3d(-1.2%,-1%,0); }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-cinematic-media img { animation: hero-kenburns 24s ease-in-out infinite alternate; will-change: transform; }
}
.hero-cinematic-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,11,8,0.55) 0%, rgba(12,11,8,0.15) 38%, rgba(12,11,8,0.35) 65%, rgba(12,11,8,0.96) 100%),
    linear-gradient(90deg, rgba(12,11,8,0.75) 0%, rgba(12,11,8,0.1) 52%, rgba(12,11,8,0) 100%);
}
.hero-cinematic-content {
  position: relative; z-index: 1;
  padding: 84px 64px 100px;
  max-width: 760px;
}
.hero-cinematic-content .eyebrow { color: var(--amber); }
.hero-cinematic-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(48px, 6.4vw, 96px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 26px;
  text-wrap: balance;
}
.hero-cinematic-content h1 em { font-style: normal; color: var(--amber); }
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--tan);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-note { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; max-width: 420px; }
.hero-note strong { color: var(--tan); }

.hero-enter {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s cubic-bezier(.16,.84,.44,1), transform 0.85s cubic-bezier(.16,.84,.44,1);
}
.hero-enter-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .hero-enter { opacity: 1; transform: none; transition: none; }
}

.scroll-cue {
  position: absolute; right: 48px; bottom: 44px; z-index: 1;
  display: flex; align-items: center; gap: 12px;
  writing-mode: vertical-rl;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tan-dim);
}
.scroll-cue::after { content: ''; width: 1px; height: 46px; background: var(--tan-dim); transform-origin: top; }
@keyframes scrollcue-travel {
  0%   { transform: scaleY(0.3); opacity: 0.3; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.3); opacity: 0.3; }
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-cue::after { animation: scrollcue-travel 2.4s ease-in-out infinite; }
}

/* ── STARTUP / LEAD TIME BANNER ── */
.startup-banner {
  background: linear-gradient(90deg, rgba(200,137,42,0.10), rgba(200,137,42,0.02));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 60px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  text-align: center;
  flex-wrap: wrap;
}
.startup-banner .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(200,137,42,0.18);
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(200,137,42,0.45); }
  70%  { box-shadow: 0 0 0 9px rgba(200,137,42,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,137,42,0); }
}
@media (prefers-reduced-motion: no-preference) {
  .startup-banner .dot { animation: pulse-dot 2.4s ease-out infinite; }
}
.startup-banner p {
  font-size: 13px;
  color: var(--tan);
  letter-spacing: 0.02em;
}
.startup-banner p strong { color: var(--white); }
.startup-banner a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }

/* ── FEATURES BAR ── */
.features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.feature-item {
  padding: 32px 40px;
  border-right: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 16px;
}
.feature-item:last-child { border-right: none; }
.feature-icon { font-size: 22px; margin-top: 2px; flex-shrink: 0; }
.feature-label {
  font-family: 'Oswald', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white); margin-bottom: 4px;
}
.feature-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── SECTION HEADER ── */
.section {
  padding: 90px 60px;
}
.section.tight { padding-top: 60px; padding-bottom: 60px; }
.section-header {
  margin-bottom: 48px;
  max-width: 640px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 14px;
}
.section-title span { color: var(--amber); }
.section-desc { font-size: 15px; color: var(--tan); line-height: 1.7; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── PRODUCT TEASER GRID (home) ── */
.product-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.teaser-card {
  background: var(--bg2);
  display: flex; flex-direction: column;
  text-decoration: none;
  transition: background 0.2s, transform 0.35s cubic-bezier(.16,.84,.44,1), box-shadow 0.35s ease;
  position: relative;
}
.teaser-card:hover {
  background: var(--bg3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.55), 0 0 0 1px rgba(200,137,42,0.3);
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .teaser-card:hover { transform: none; }
}
.teaser-img-wrap { position: relative; overflow: hidden; }
.teaser-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  filter: brightness(0.88) contrast(1.05);
  transition: transform 0.4s ease, filter 0.3s;
}
.teaser-card:hover .teaser-img { transform: scale(1.04); filter: brightness(1) contrast(1.05); }
.teaser-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--amber); color: var(--bg);
  font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}
.teaser-body { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.teaser-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 8px;
}
.teaser-name {
  font-family: 'Oswald', sans-serif; font-size: 21px; font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--white); margin-bottom: 8px;
}
.teaser-desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 20px; flex: 1; }
.teaser-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.teaser-price { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); }
.teaser-lead { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.teaser-actions { display: flex; gap: 10px; }
.teaser-actions .btn-outline, .teaser-actions .btn-primary { flex: 1; font-size: 11px; padding: 12px 14px; }

/* CCW graphic placeholder (used where no product photo exists yet) */
.graphic-panel {
  width: 100%;
  aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(135deg, rgba(200,137,42,0.06) 0px, rgba(200,137,42,0.06) 2px, transparent 2px, transparent 18px),
    linear-gradient(160deg, #241f19 0%, #16140f 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.graphic-panel .g-icon { font-size: 40px; }
.graphic-panel .g-label {
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--tan);
}
.graphic-panel .g-note { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.graphic-panel.lg { aspect-ratio: auto; height: 100%; min-height: 460px; }
.graphic-panel.lg .g-icon { font-size: 64px; }
.graphic-panel.lg .g-label { font-size: 16px; }

/* ── PRODUCT DETAIL HERO ── */
.product-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  padding: 48px 60px 90px;
  align-items: start;
}
.product-media { position: sticky; top: 100px; border-radius: 6px; overflow: hidden; background: var(--bg3); }
.product-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; max-height: calc(100vh - 160px); }
.product-info .pill { margin-bottom: 18px; }
.product-info h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 14px;
}
.product-info h1 span { color: var(--amber); }
.product-tagline { font-size: 16px; color: var(--tan); margin-bottom: 26px; line-height: 1.6; }
.price-row {
  display: flex; align-items: baseline; gap: 14px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.price-amount { font-family: 'Oswald', sans-serif; font-size: 34px; font-weight: 700; color: var(--white); }
.price-note { font-size: 12px; color: var(--muted); letter-spacing: 0.03em; }
.price-note strong { color: var(--amber); }
.product-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.feature-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.feature-checklist li { display: flex; gap: 12px; font-size: 14px; color: var(--tan); line-height: 1.5; }
.feature-checklist li::before { content: '✓'; color: var(--amber); font-weight: 700; flex-shrink: 0; }
.legal-note {
  font-size: 12px; color: var(--muted); line-height: 1.6;
  border-left: 2px solid var(--border); padding-left: 14px;
}

/* ── SPECS TABLE ── */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 16px 4px; font-size: 13px; }
.specs-table td:first-child {
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; width: 40%;
}
.specs-table td:last-child { color: var(--white); }

/* ── TWO COLUMN SECTION ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 2px; max-width: 760px; }
.faq-item { background: var(--bg2); border: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--amber); font-size: 20px; flex-shrink: 0;
  transition: transform 0.3s ease;
  display: inline-block;
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item p {
  padding: 0 24px 22px; font-size: 14px; color: var(--tan); line-height: 1.7;
  overflow: hidden;
}
.faq-item.js-anim p { transition: height 0.3s cubic-bezier(.16,.84,.44,1); }

/* ── ABOUT / STATS ── */
.about-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-copy h2 {
  font-family: 'Oswald', sans-serif; font-size: 38px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.05; margin-bottom: 20px;
}
.about-copy h2 span { color: var(--amber); }
.about-copy p { font-size: 15px; color: var(--tan); line-height: 1.8; margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.stat-box { background: var(--bg3); padding: 34px 30px; }
.stat-num { font-family: 'Oswald', sans-serif; font-size: 44px; font-weight: 700; color: var(--amber); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

/* ── RELATED PRODUCTS ── */
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); }

/* ── FOOTER ── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 60px 80px 40px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand .logo-text { font-size: 20px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 300px; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--tan-dim); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; }

/* ── INQUIRY MODAL ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 100%; max-width: 460px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-header {
  padding: 26px 28px 0;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
}
.modal-title { font-family: 'Oswald', sans-serif; font-size: 19px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.modal-sub { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.6; }
.modal-close { background: none; border: none; color: var(--muted); font-size: 22px; cursor: pointer; line-height: 1; }
.modal-close:hover { color: var(--white); }
.modal-body { padding: 22px 28px 28px; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--tan-dim); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 12px 14px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--amber); }
.field textarea { resize: vertical; min-height: 70px; }
.field-hint { font-size: 11px; color: var(--muted); margin-top: 6px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.form-error {
  display: none;
  background: rgba(196,74,42,0.1);
  border: 1px solid var(--danger);
  color: #e08a70;
  font-size: 12px;
  padding: 12px 14px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.form-error.show { display: block; }
.modal-response-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 14px; letter-spacing: 0.02em; }

/* success state */
.modal-success { display: none; padding: 44px 28px 40px; text-align: center; }
.modal-success.show { display: block; }
.modal-success .s-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(90,156,90,0.14); color: var(--ok);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 20px;
}
.modal-success h3 { font-family: 'Oswald', sans-serif; font-size: 18px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px; }
.modal-success p { font-size: 13px; color: var(--tan); line-height: 1.7; margin-bottom: 20px; }
.modal-form.hide { display: none; }

/* ── SCROLL REVEAL (classes added by main.js via IntersectionObserver) ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(.16,.84,.44,1), transform 0.7s cubic-bezier(.16,.84,.44,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .product-hero { grid-template-columns: 1fr; }
  .product-media { position: static; }
  .two-col { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links {
    display: none;
    position: absolute; top: 84px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    flex-direction: column; gap: 0; padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; }
  .nav-links a::after { display: none; }
  .nav-links a.active { border-bottom: none; border-left: 2px solid var(--amber); padding-bottom: 14px; }
  .nav-burger { display: flex; }
  .hero-cinematic { min-height: 92vh; }
  .hero-cinematic-content { padding: 84px 20px 56px; }
  .scroll-cue { display: none; }
  .hero-actions { margin-bottom: 20px; }
  .startup-banner { padding: 16px 20px; }
  .features-bar { grid-template-columns: 1fr 1fr; }
  .feature-item { padding: 22px; }
  .feature-item:nth-child(2) { border-right: none; }
  .section { padding: 56px 20px; }
  .product-teaser-grid { grid-template-columns: 1fr; }
  .product-hero { padding: 28px 20px 56px; gap: 36px; }
  .breadcrumb { padding: 18px 20px 0; }
  .about-strip { padding: 56px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  footer { padding: 40px 20px 28px; }
  .related-grid { grid-template-columns: 1fr; }
}
