/* Mechronix — technical atlas + pin markers. Palette from logo. */
:root {
  --cyan:        #13AFEC;
  --cyan-mid:    #29A0DB;
  --cyan-deep:   #0B86C4;
  --navy:        #0D3D68;
  --navy-mid:    #124A7A;
  --navy-deep:   #08243E;
  --steel:       #7E9AC9;
  --ice:         #E7F1F8;
  --paper:       #F4F8FB;
  --sheet:       #FFFFFF;
  --mist:        #D5E4F0;
  --text:        #0D3D68;
  --muted:       #3E5A74;
  --line:        #C5D6E6;
  --text-inv:    #F4F9FC;
  --muted-inv:   #D5E6F2;
  --line-inv:    rgba(244, 249, 252, 0.22);
  --radius:      14px;
  --maxw:        1160px;
  --ease:        cubic-bezier(.22, .61, .36, 1);
  --header-h:    72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Literata", "Times New Roman", serif;
  font-optical-sizing: auto;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .brand-name, .eyebrow, .kicker, .panel-fix, .fact-k, .readout {
  font-family: "Archivo Black", "Arial Black", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin: 0;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--cyan); color: var(--navy-deep); padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

.kicker, .eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: 12px;
}

.lead { color: var(--muted); font-size: 1.05rem; max-width: 56ch; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px; border-radius: 4px; font-weight: 600; font-size: 15px;
  font-family: "Literata", serif;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn-primary {
  background: var(--cyan); color: var(--navy-deep);
  box-shadow: 0 8px 24px -10px rgba(19, 175, 236, .55);
}
.btn-ghost {
  background: transparent; color: var(--navy); border-color: var(--navy);
}

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(244, 248, 251, .88);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img {
  width: 40px; height: 40px;
  object-fit: cover; object-position: 8% 50%;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.brand-name { font-size: 18px; color: var(--navy); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 15px; color: var(--muted); transition: color .2s var(--ease); }
.nav .nav-cta {
  color: var(--navy); border: 1px solid var(--line); padding: 8px 18px; border-radius: 4px;
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero: grid paper + coordinate ticks ===== */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 18px) 18px 28px;
  background: var(--ice);
}
.atlas-sheet {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  min-height: min(78vh, 760px);
  padding: 52px 56px 64px;
  background-color: #eef5fa;
  background-image:
    linear-gradient(rgba(19, 175, 236, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 175, 236, 0.13) 1px, transparent 1px),
    linear-gradient(rgba(13, 61, 104, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 61, 104, 0.16) 1px, transparent 1px);
  background-size: 24px 24px, 24px 24px, 120px 120px, 120px 120px;
  border: 1px solid var(--steel);
  box-shadow: 0 24px 60px -32px rgba(13, 61, 104, .35);
  overflow: hidden;
}

.tick-row, .tick-col {
  position: absolute;
  display: flex;
  font-family: "Archivo Black", sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--navy);
  opacity: .55;
  pointer-events: none;
  z-index: 2;
}
.tick-row { left: 48px; right: 48px; justify-content: space-between; }
.tick-top { top: 10px; }
.tick-bottom { bottom: 10px; }
.tick-col {
  top: 40px; bottom: 40px;
  flex-direction: column; justify-content: space-between;
}
.tick-left { left: 12px; }
.tick-right { right: 12px; }

.reg-mark {
  position: absolute; width: 18px; height: 18px; z-index: 2; pointer-events: none;
  border: 0 solid var(--navy);
}
.rm-tl { top: 8px; left: 8px; border-top-width: 2px; border-left-width: 2px; }
.rm-tr { top: 8px; right: 8px; border-top-width: 2px; border-right-width: 2px; }
.rm-bl { bottom: 8px; left: 8px; border-bottom-width: 2px; border-left-width: 2px; }
.rm-br { bottom: 8px; right: 8px; border-bottom-width: 2px; border-right-width: 2px; }

.sheet-meta {
  position: absolute; top: 36px; right: 56px; z-index: 3;
  display: flex; gap: 14px; flex-wrap: wrap;
  font-family: "Archivo Black", sans-serif;
  font-size: 10px; letter-spacing: 0.14em; color: var(--navy); opacity: .5;
}
.sheet-coord {
  position: absolute; bottom: 36px; left: 56px; z-index: 3;
  font-family: "Archivo Black", sans-serif;
  font-size: 10px; letter-spacing: 0.14em; color: var(--navy); opacity: .5;
}

.compass {
  position: absolute; right: 52px; bottom: 48px; width: 64px; height: 64px; z-index: 3;
  opacity: .45; pointer-events: none;
}
.compass circle { fill: none; stroke: var(--navy); stroke-width: 1.4; }
.compass path { fill: var(--cyan); stroke: none; }
.compass text { font-size: 9px; font-family: "Archivo Black", sans-serif; fill: var(--navy); }

.hero-copy {
  position: relative; z-index: 4;
  max-width: 720px;
  padding: 28px 0 12px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  color: var(--navy);
  max-width: 16ch;
}
.hero-sub {
  margin-top: 18px;
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 52ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ===== Atlas field + pins ===== */
.atlas { padding: 72px 0 88px; background: var(--paper); }
.atlas-head { margin-bottom: 32px; max-width: 720px; }
.atlas-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 6px 0 12px; }
.atlas-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .75fr);
  gap: 22px;
  align-items: start;
}

.atlas-field {
  position: relative;
  min-height: 520px;
  height: 100%;
  border: 1px solid var(--steel);
  background: #eaf3f9;
  overflow: hidden;
}
.field-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(19, 175, 236, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 175, 236, 0.16) 1px, transparent 1px);
  background-size: 32px 32px;
}
.scanline {
  position: absolute; top: 0; bottom: 0; width: 18%;
  background: linear-gradient(90deg, transparent, rgba(19, 175, 236, .16), transparent);
  animation: scan 7.5s linear infinite;
  pointer-events: none; z-index: 1;
}
@keyframes scan {
  from { transform: translateX(-120%); }
  to   { transform: translateX(620%); }
}

.field-routes {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none;
}
.field-routes path {
  fill: none;
  stroke: var(--navy);
  stroke-width: 0.35;
  stroke-dasharray: 1.4 1.1;
  opacity: .35;
  animation: dash-move 18s linear infinite;
}
@keyframes dash-move {
  to { stroke-dashoffset: -40; }
}

.pin {
  position: absolute;
  z-index: 4;
  width: 28px; height: 44px;
  transform: translate(-50%, -100%);
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--navy);
}
.pin-dot {
  position: absolute; left: 50%; bottom: 10px;
  width: 14px; height: 14px;
  margin-left: -7px;
  background: var(--cyan);
  border: 2px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(19, 175, 236, .4);
  z-index: 2;
}
.pin-stem {
  position: absolute; left: 50%; bottom: 0;
  width: 2px; height: 12px; margin-left: -1px;
  background: var(--navy);
}
.pin-pulse {
  position: absolute; left: 50%; bottom: 10px;
  width: 14px; height: 14px; margin-left: -7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pin-pulse 2.4s ease-out infinite;
  z-index: 1;
}
.pin:nth-of-type(1) .pin-pulse { animation-delay: 0s; }
.pin:nth-of-type(2) .pin-pulse { animation-delay: .4s; }
.pin:nth-of-type(3) .pin-pulse { animation-delay: .8s; }
.pin:nth-of-type(4) .pin-pulse { animation-delay: 1.2s; }
.pin:nth-of-type(5) .pin-pulse { animation-delay: .2s; }
.pin:nth-of-type(6) .pin-pulse { animation-delay: 1.6s; }

@keyframes pin-pulse {
  0%   { transform: scale(1); opacity: .55; }
  70%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

.pin-label {
  position: absolute;
  left: 22px; top: 0;
  white-space: nowrap;
  font-family: "Archivo Black", sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: .0;
  transform: translateX(-4px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  background: rgba(244, 248, 251, .92);
  border: 1px solid var(--line);
  padding: 3px 7px;
  pointer-events: none;
}
.pin.is-active .pin-label,
.pin:focus-visible .pin-label { opacity: 1; transform: none; }
.pin.is-active .pin-dot {
  background: var(--navy);
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(19, 175, 236, .28);
}
.pin[data-pin="digital"] .pin-label,
.pin[data-pin="renewable"] .pin-label {
  left: auto; right: 22px;
}

.readout {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 5;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: var(--navy);
  color: var(--text-inv);
  padding: 10px 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.readout strong { color: var(--cyan); font-weight: 400; }
.read-sep { width: 1px; height: 12px; background: var(--line-inv); }

.atlas-legend { display: grid; gap: 10px; align-content: start; }
.panel-sheet {
  background: var(--sheet);
  border: 1px solid var(--line);
  border-left: 4px solid var(--mist);
  padding: 16px 16px 16px 18px;
  opacity: .42;
  cursor: pointer;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), opacity .25s var(--ease), background .25s var(--ease);
}
.panel-sheet.is-on {
  opacity: 1;
  border-left-color: var(--cyan);
  background: #f7fbfe;
  box-shadow: 0 14px 28px -18px rgba(13, 61, 104, .35);
}
.panel-fix {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--cyan-deep);
  margin-bottom: 4px;
}
.panel-sheet h3 { font-size: 1.05rem; margin-bottom: 6px; }
.panel-sheet p { color: var(--muted); font-size: .95rem; }

/* About */
.about { padding: 80px 0; background: var(--sheet); border-top: 1px solid var(--line); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: start;
}
.about-copy h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin: 6px 0 18px; max-width: 18ch; }
.about-copy p + p { margin-top: 14px; }
.about-copy p { color: var(--muted); font-size: 1.05rem; }
.about-facts { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-facts li {
  border: 1px solid var(--line);
  background: var(--ice);
  padding: 18px 16px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.fact-k {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: 6px;
}
.fact-v { font-size: 1.15rem; color: var(--navy); font-family: "Literata", serif; font-weight: 600; }

/* Quote: dark band, near-white text */
.quote {
  background: var(--navy);
  color: var(--text-inv);
  padding: 88px 0;
}
.quote-inner { max-width: 820px; position: relative; }
.quote-mark {
  font-family: "Archivo Black", sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--cyan);
  display: block;
  margin-bottom: 8px;
}
.quote blockquote {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.45;
  color: var(--text-inv);
}
.quote-attr {
  margin-top: 22px;
  font-family: "Archivo Black", sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

/* FAQ */
.faq { padding: 80px 0 88px; background: var(--ice); }
.faq-wrap {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 40px;
  align-items: start;
}
.faq-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-top: 6px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.faq-item.open { border-color: var(--cyan); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 18px 20px;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.02rem;
  color: var(--navy);
}
.faq-ico { position: relative; flex: 0 0 auto; width: 16px; height: 16px; }
.faq-ico::before, .faq-ico::after {
  content: ""; position: absolute; background: var(--cyan-deep); border-radius: 1px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.faq-ico::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-ico::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-item.open .faq-ico::after { transform: scaleY(0); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 280px; }
.faq-a p { color: var(--muted); margin: 0; padding: 0 20px 18px; font-size: .98rem; }

/* Contact: dark band, near-white text */
.contact {
  background: var(--navy-deep);
  color: var(--text-inv);
  padding: 88px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact .kicker { color: var(--cyan); }
.contact h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin: 6px 0 16px; color: var(--text-inv); }
.contact-copy p { color: var(--muted-inv); max-width: 46ch; }
.contact-email {
  display: inline-block;
  margin-top: 22px;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.15rem;
  color: var(--cyan);
  letter-spacing: 0.02em;
}
.contact-addr { margin-top: 14px; color: var(--muted-inv); font-size: .98rem; }

.contact-form {
  background: rgba(19, 175, 236, .08);
  border: 1px solid var(--line-inv);
  border-radius: var(--radius);
  padding: 28px;
  display: grid; gap: 16px;
}
.field { display: grid; gap: 7px; }
.field label { font-size: 13px; color: var(--muted-inv); font-weight: 600; }
.field input, .field textarea {
  background: var(--navy);
  border: 1px solid var(--line-inv);
  border-radius: 8px;
  color: var(--text-inv);
  padding: 12px 14px;
  font: inherit; font-size: 15px;
  width: 100%; resize: vertical;
  transition: border-color .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(213, 230, 242, .55); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--cyan); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--sheet);
  padding: 48px 0 26px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 30px; flex-wrap: wrap;
  padding-bottom: 28px; border-bottom: 1px solid var(--line);
}
.footer-tag { color: var(--muted); margin: 12px 0 0; font-size: .95rem; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { color: var(--muted); font-size: 15px; font-weight: 600; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  color: var(--muted); font-size: 14px; padding-top: 20px;
}

/* Reveal: set transform none BEFORE hover rules */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .scanline, .pin-pulse, .field-routes path { animation: none; }
  .pin-pulse { opacity: 0; }
}

/* Hover AFTER .reveal.in so lift is not overwritten */
@media (hover: hover) and (pointer: fine) {
  .btn { transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease); }
  .btn-primary:hover {
    transform: translateY(-2px);
    background: var(--cyan-mid);
    box-shadow: 0 14px 34px -8px rgba(19, 175, 236, .7);
  }
  .btn-ghost:hover {
    border-color: var(--cyan-deep);
    color: var(--cyan-deep);
    transform: translateY(-2px);
  }
  .nav a:hover { color: var(--navy); }
  .nav .nav-cta:hover { border-color: var(--cyan-deep); color: var(--cyan-deep); }
  .contact-email:hover { color: var(--text-inv); }
  .footer-nav a:hover { color: var(--navy); }

  .panel-sheet.reveal.in:hover,
  .panel-sheet:hover {
    transform: translateY(-4px);
    border-color: var(--cyan);
    box-shadow: 0 16px 32px -18px rgba(13, 61, 104, .32);
    opacity: 1;
  }
  .about-facts li.reveal.in:hover,
  .about-facts li:hover {
    transform: translateY(-4px);
    border-color: var(--cyan);
    box-shadow: 0 14px 28px -16px rgba(13, 61, 104, .28);
  }
  .faq-item.reveal.in:hover,
  .faq-item:hover {
    transform: translateY(-3px);
    border-color: var(--cyan);
    box-shadow: 0 12px 24px -16px rgba(13, 61, 104, .25);
  }
  .faq-q:hover { color: var(--cyan-deep); }
  .pin:hover .pin-label { opacity: 1; transform: none; }
  .pin:hover .pin-dot { border-color: var(--cyan); }
}

@media (hover: none) {
  .nav a { color: var(--text); }
  .btn-primary { background: var(--cyan); color: var(--navy-deep); }
  .btn-ghost { color: var(--navy); border-color: var(--navy); }
  .contact-copy p, .contact-addr { color: var(--muted-inv); }
  .faq-q { color: var(--navy); }
  .quote blockquote { color: var(--text-inv); }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .atlas-layout,
  .about-grid,
  .faq-wrap,
  .contact-inner { grid-template-columns: 1fr; }
  .faq-head { position: static; }
  .atlas-field { min-height: 400px; }
  .sheet-meta { right: 40px; top: 32px; }
  .atlas-sheet { padding: 48px 40px 56px; min-height: 0; }
  .compass { right: 36px; bottom: 36px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; gap: 4px; align-items: stretch;
    background: rgba(244, 248, 251, .98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    transform: translateY(-120%);
    transition: transform .35s var(--ease);
    z-index: 90;
  }
  .nav.open { transform: translateY(0); }
  .nav a {
    padding: 12px 4px; font-size: 17px; color: var(--text);
    border-bottom: 1px solid var(--line);
  }
  .nav .nav-cta {
    text-align: center; margin-top: 10px;
    border-color: var(--cyan-deep); color: var(--cyan-deep);
  }
  .hero { padding: calc(var(--header-h) + 12px) 12px 18px; }
  .atlas-sheet { padding: 44px 22px 48px; }
  .tick-row { left: 28px; right: 28px; }
  .sheet-meta { position: static; margin-bottom: 8px; gap: 10px; }
  .sheet-coord { position: static; margin-top: 18px; }
  .compass { display: none; }
  .hero h1 { font-size: clamp(2.05rem, 10vw, 2.8rem); }
  .about, .faq { padding: 64px 0 72px; }
  .quote, .contact { padding: 64px 0; }
  .atlas { padding: 56px 0 64px; }
  .brand-name { font-size: 16px; }
  .about-facts { grid-template-columns: 1fr 1fr; }
  .pin-label { display: none; }
}

@media (max-width: 480px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .hero { padding: calc(var(--header-h) + 10px) 10px 14px; }
  .atlas-sheet { padding: 40px 16px 36px; }
  .tick-col { display: none; }
  .tick-row { left: 16px; right: 16px; font-size: 9px; }
  .hero-copy { padding-top: 8px; }
  .hero-actions { gap: 10px; margin-top: 22px; }
  .btn { width: 100%; }
  .atlas-field { min-height: 340px; }
  .about-grid,
  .faq-wrap,
  .contact-inner,
  .about-facts { grid-template-columns: 1fr; }
  .about-facts { gap: 10px; }
  .about, .faq { padding: 56px 0 64px; }
  .quote, .contact { padding: 56px 0; }
  .atlas { padding: 48px 0 56px; }
  .atlas-head { margin-bottom: 22px; }
  .section-head, .faq-head { margin-bottom: 22px; }
  .contact-inner { gap: 32px; }
  .contact-form { padding: 22px 18px; }
  .faq-q { padding: 18px 16px; font-size: 1rem; color: var(--navy); }
  .footer-inner { flex-direction: column; gap: 20px; }
  .quote-mark { font-size: 4rem; }
  .hero-sub { font-size: 1.02rem; }
  .panel-sheet { padding: 16px 14px; }
  .readout { font-size: 10px; gap: 8px; padding: 8px 10px; }
  .pin { width: 24px; height: 38px; }
}
