/* ==========================================================================
   ShakeStop — shared stylesheet
   Tokens measured from the original Base44 site (see reference/).
   ========================================================================== */

:root {
  /* Brand */
  --red: #B80A0A;
  --red-bright: #E01414;
  --red-dim: rgba(184, 10, 10, 0.2);

  /* Surfaces */
  --bg: #14151A;
  --bg-deep: #0E0F13;
  --surface: #1A1D28;
  --surface-2: #212533;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --text: #FFFFFF;
  --text-muted: #A1A1AA;
  --text-dim: rgba(255, 255, 255, 0.6);
  --text-faint: rgba(255, 255, 255, 0.4);

  /* Type */
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --wrap: 1200px;
  --wrap-narrow: 820px;
  --radius: 14px;
  --nav-h: 70px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
p { margin: 0; }

::selection { background: var(--red); color: #fff; }

:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: var(--wrap-narrow); }

.section { padding: 104px 0; }
.section--tight { padding: 72px 0; }
.section--alt { background: var(--bg-deep); }

.center { text-align: center; }

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--red);
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Section headings ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--red);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--red);
}

.section-title {
  font-size: clamp(30px, 5vw, 52px);
  margin-bottom: 18px;
}
.section-title .accent { color: var(--red); display: block; }

.section-lead {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 620px;
  line-height: 1.65;
}
.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-bright); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.05); }

.btn--lg { padding: 17px 38px; font-size: 14px; }
.btn--block { width: 100%; }

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(20, 21, 26, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 26px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  list-style: none;
  padding: 0;
}
.nav-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.16s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; }
.nav-links a[aria-current="page"] { color: #fff; }

.nav-cta { flex-shrink: 0; padding: 12px 22px; font-size: 12px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  padding: 9px 11px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.nav-toggle span + span { margin-top: 4px; }

/* ---------- Hero (home) ---------- */

.hero {
  position: relative;
  padding: 92px 0 100px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 78% 42%, rgba(184, 10, 10, 0.16), transparent 68%),
    radial-gradient(700px 420px at 8% 8%, rgba(184, 10, 10, 0.07), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border: 1px solid var(--red-dim);
  border-radius: 999px;
  background: rgba(184, 10, 10, 0.09);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 26px;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-bright);
}

.hero h1 {
  font-size: clamp(46px, 8.5vw, 88px);
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--red); display: block; }

.hero-sub {
  font-size: clamp(19px, 2.4vw, 25px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  max-width: 460px;
}
.hero-body {
  font-size: 15.5px;
  color: var(--text-dim);
  max-width: 430px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Machine illustration — pure CSS, no stock photography */
.machine {
  position: relative;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  aspect-ratio: 3 / 5;
  background: linear-gradient(168deg, #262A35 0%, #16181F 100%);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}
.machine::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -26px;
  height: 26px;
  background: radial-gradient(ellipse at center, rgba(184, 10, 10, 0.3), transparent 72%);
  filter: blur(7px);
}
.machine-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
}
.machine-brand img { height: 17px; width: auto; opacity: 0.95; }
.machine-screen {
  flex: 1;
  background: linear-gradient(158deg, #0C0D12, #14151C);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 11px;
  padding: 18px 15px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.machine-screen-title {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.15;
}
.machine-screen-title span { color: var(--red-bright); display: block; }
.machine-opts { display: grid; gap: 7px; margin-top: 3px; }
.machine-opt {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 7px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.machine-opt::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-faint);
  flex-shrink: 0;
}
.machine-opt.is-active {
  background: rgba(184, 10, 10, 0.15);
  border-color: rgba(184, 10, 10, 0.45);
  color: #fff;
}
.machine-opt.is-active::before { background: var(--red-bright); }
.machine-tap {
  margin-top: 14px;
  text-align: center;
  padding: 9px;
  background: var(--red);
  border-radius: 7px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.machine-dispenser {
  height: 74px;
  background: linear-gradient(180deg, #0B0C10, #121319);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 9px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 11px;
}
.machine-cup {
  width: 38px;
  height: 46px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px 2px 7px 7px;
  clip-path: polygon(0 0, 100% 0, 87% 100%, 13% 100%);
  position: relative;
  overflow: hidden;
}
.machine-cup::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 62%;
  background: linear-gradient(180deg, #8B2020, #5E1010);
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  position: relative;
  padding: 76px 0 60px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(760px 320px at 50% 0%, rgba(184, 10, 10, 0.13), transparent 70%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 26px;
  transition: color 0.16s ease;
}
.back-link:hover { color: #fff; }

.page-hero h1 {
  font-size: clamp(38px, 6.5vw, 62px);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 17.5px;
  color: var(--text-dim);
  max-width: 640px;
  line-height: 1.6;
}

/* ---------- Cards & grids ---------- */

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 10, 10, 0.4);
  background: var(--surface-2);
}
.card h3 {
  font-size: 15px;
  letter-spacing: 0.02em;
  margin-bottom: 11px;
}
.card p { font-size: 14.5px; color: var(--text-dim); line-height: 1.62; }

.card-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--red);
  margin-bottom: 16px;
}

.card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(184, 10, 10, 0.12);
  border: 1px solid var(--red-dim);
  margin-bottom: 17px;
}
.card-icon svg { width: 19px; height: 19px; stroke: var(--red-bright); fill: none; stroke-width: 1.9; }

/* Step cards get a top accent rule */
.card--step { border-top: 2px solid var(--red); border-radius: 3px var(--radius) var(--radius) var(--radius); }

/* ---------- Feature / check list ---------- */

.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.55;
}
.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--red-dim);
  border: 1px solid var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E01414' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---------- Spec table ---------- */

.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec-table th,
.spec-table td {
  padding: 17px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: none; }
.spec-table th {
  width: 38%;
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--red-bright);
  background: rgba(255, 255, 255, 0.022);
  vertical-align: top;
}
.spec-table td { color: var(--text-dim); }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.note {
  font-size: 13px;
  color: var(--text-faint);
  font-style: italic;
  margin-top: 16px;
}

/* ---------- Accordion (FAQ) ---------- */

.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 4px;
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  transition: color 0.16s ease;
}
.accordion-trigger:hover { color: var(--red-bright); }

.accordion-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: transform 0.3s ease, border-color 0.2s ease;
}
.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.6px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}
.accordion-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion-trigger[aria-expanded="true"] .accordion-icon { border-color: var(--red); transform: rotate(180deg); }
.accordion-trigger[aria-expanded="true"] .accordion-icon::after { opacity: 0; }

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}
.accordion-panel > div { overflow: hidden; }
.accordion-trigger[aria-expanded="true"] + .accordion-panel { grid-template-rows: 1fr; }
.accordion-panel p {
  padding: 0 4px 26px;
  font-size: 15px;
  color: var(--text-dim);
  max-width: 720px;
  line-height: 1.65;
}

/* ---------- Forms ---------- */

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.field .req { color: var(--red-bright); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.16s ease, background-color 0.16s ease;
}
.field textarea { resize: vertical; min-height: 118px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--bg-deep);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.28); }
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--bg); color: #fff; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-faint);
  border-bottom: 2px solid var(--text-faint);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.form-status {
  margin-top: 18px;
  padding: 14px 17px;
  border-radius: 8px;
  font-size: 14.5px;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-error {
  background: rgba(184, 10, 10, 0.12);
  border: 1px solid var(--red);
  color: #FFC9C9;
}
.form-status.is-ok {
  background: rgba(30, 160, 90, 0.12);
  border: 1px solid #1EA05A;
  color: #A9F0C9;
}

/* ---------- Map / locations ---------- */

.map-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
#map { height: 500px; width: 100%; background: var(--surface); }
.leaflet-container { background: #14151A !important; font-family: var(--font) !important; }
.leaflet-control-attribution {
  background: rgba(20, 21, 26, 0.82) !important;
  color: var(--text-faint) !important;
  font-size: 10.5px !important;
}
.leaflet-control-attribution a { color: var(--text-dim) !important; }
.leaflet-bar a {
  background: var(--surface) !important;
  color: #fff !important;
  border-color: var(--line) !important;
}
.leaflet-bar a:hover { background: var(--surface-2) !important; }

.empty-state {
  text-align: center;
  padding: 60px 26px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
}
.empty-state .tag {
  display: inline-block;
  padding: 7px 15px;
  border: 1px solid var(--red-dim);
  border-radius: 999px;
  background: rgba(184, 10, 10, 0.09);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 20px;
}
.empty-state h3 { font-size: 20px; margin-bottom: 11px; text-transform: none; letter-spacing: -0.015em; }
.empty-state p { color: var(--text-dim); font-size: 15px; max-width: 400px; margin: 0 auto; }

/* ---------- Status panel ---------- */

.status-panel {
  border: 1px solid var(--red-dim);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(184, 10, 10, 0.07), transparent 62%), var(--surface);
  padding: 40px 34px;
  text-align: center;
}
.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 16px;
}
.status-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  animation: pulse 2.1s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(224, 20, 20, 0.5); }
  50% { opacity: 0.65; box-shadow: 0 0 0 7px rgba(224, 20, 20, 0); }
}
.status-panel h3 { font-size: 21px; margin-bottom: 13px; }
.status-panel p { color: var(--text-dim); font-size: 14.5px; max-width: 520px; margin: 0 auto; }

/* ---------- Ticker ---------- */

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.ticker span { display: flex; align-items: center; gap: 30px; }
.ticker span:not(:last-child)::after { content: "•"; color: var(--red); }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(760px 400px at 50% 100%, rgba(184, 10, 10, 0.18), transparent 68%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(30px, 5.4vw, 54px); margin-bottom: 20px; }
.cta-band p { color: var(--text-dim); font-size: 17px; max-width: 520px; margin: 0 auto 34px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding: 66px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 48px;
}
.footer-logo img { height: 26px; width: auto; margin-bottom: 20px; }
.footer-tag { font-size: 17px; font-weight: 800; letter-spacing: -0.015em; margin-bottom: 9px; }
.footer-brand p { font-size: 14px; color: var(--text-dim); max-width: 270px; margin-bottom: 16px; }
.footer-loc { font-size: 12px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-faint); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  color: var(--text-faint);
  margin-bottom: 17px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a, .footer-col li { font-size: 14px; color: var(--text-dim); transition: color 0.16s ease; }
.footer-col a:hover { color: #fff; }
.footer-note { font-size: 12.5px; color: var(--text-faint); margin-top: 11px; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  font-size: 12.5px;
  color: var(--text-faint);
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

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

/* ---------- Responsive ---------- */

@media (max-width: 1040px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 11px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .site-header.is-open { height: auto; padding: 0 0 18px; }
  .site-header.is-open .nav { flex-wrap: wrap; padding-top: 14px; }
  .site-header.is-open .nav-links {
    display: grid;
    gap: 3px;
    width: 100%;
    margin: 14px 0 12px;
    order: 3;
  }
  .site-header.is-open .nav-links a { display: block; padding: 11px 0; font-size: 13px; }
  .site-header.is-open .nav-cta { display: inline-flex; width: 100%; order: 4; }

  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero { padding: 62px 0 76px; }
  .hero-sub, .hero-body { max-width: none; }
  .machine { max-width: 280px; }

  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 620px) {
  .wrap { padding: 0 20px; }
  .nav { padding: 0 20px; }
  .section { padding: 68px 0; }
  .section--tight { padding: 52px 0; }
  .cta-band { padding: 68px 0; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .hero-actions .btn { width: 100%; }
  .spec-table th { width: 44%; }
  #map { height: 380px; }
}
