/* ============================================================
   Hi-Sky Enterprises Ltd - marketing site
   Brand: deep navy + white + silver, rugged heritage feel
   ============================================================ */

:root {
  /* Palette sampled directly from the Hi-Sky logo: navy #082163, steel #5d7ebc, silver #c1c1c1 */
  --navy-900: #061634;
  --navy-800: #082163;
  --navy-700: #0c2a6e;
  --navy-600: #143a82;
  --blue-500: #2f4f93;
  --blue-400: #5d7ebc;
  --silver-300: #c1c1c1;
  --silver-200: #d8dbe1;
  --silver-100: #eceef2;
  --ink: #16202f;
  --ink-soft: #43505f;
  --white: #ffffff;
  --max: 1400px;
  --radius: 10px;
  --shadow: 0 14px 38px rgba(8, 24, 50, 0.14);
  --font-head: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--blue-500); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 30px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-800);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Headings ---------- */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 26, 74, 0.97);
  border-bottom: 1px solid rgba(193, 193, 193, 0.2);
  backdrop-filter: saturate(140%) blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 132px;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.brand-logo {
  height: 104px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 9px rgba(0, 0, 0, 0.45));
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #fff;
  font-size: 1.05rem;
}
.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver-300);
}

.primary-nav { display: flex; align-items: center; gap: 6px; }
.primary-nav a {
  color: var(--silver-200);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.primary-nav a:hover { color: #fff; background: rgba(93, 126, 188, 0.22); }
.nav-cta {
  background: var(--blue-500);
  color: #fff !important;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--blue-400) !important; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 11px;
  padding: 11px 18px;
  background: rgba(93, 126, 188, 0.2);
  border: 1px solid rgba(200, 204, 212, 0.45);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle-bars { display: flex; flex-direction: column; gap: 6px; }
.nav-toggle-bars span { display: block; width: 30px; height: 3px; border-radius: 2px; background: #fff; }
.nav-toggle-text {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
}

/* ============================================================
   DEMO THEME SWITCHER (top banner)
   ============================================================ */
.theme-switch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 6;
}
.theme-switch-label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
  transition: transform 0.12s, border-color 0.12s, box-shadow 0.12s;
}
.swatch:hover { transform: scale(1.15); }
.swatch.is-active { border-color: #fff; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4); }
.swatch-blue { background: #2f4f93; }
.swatch-red { background: #d62330; }
.swatch-chrome { background: linear-gradient(135deg, #eef2f6 0%, #aab2bd 50%, #767e8a 100%); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 132px);
  background-color: var(--navy-900);
  background-image: url("hiskyhero.jpg");
  background-size: cover;
  background-position: center 15%;
  overflow: hidden;
  padding-bottom: 58px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(52% 46% at 17% 22%, rgba(255, 240, 214, 0.28), transparent 70%),
    radial-gradient(78% 78% at 50% 62%, rgba(6, 16, 34, 0.74), rgba(6, 16, 34, 0.22) 68%, transparent 86%),
    linear-gradient(0deg, rgba(6, 16, 34, 0.82) 0%, rgba(6, 16, 34, 0) 42%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 54px 22px 56px;
  max-width: 880px;
  text-align: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--silver-300);
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.7rem);
  margin: 0 auto 22px;
  max-width: 18ch;
}
.hero-sub {
  font-size: 1.18rem;
  color: var(--silver-200);
  max-width: 56ch;
  margin: 0 auto 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 44px; }

.btn {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 8px;
  transition: transform 0.12s, background 0.15s, box-shadow 0.15s;
  border: 2px solid transparent;
}
.btn-primary { background: var(--blue-500); color: #fff; box-shadow: 0 10px 24px rgba(8, 33, 99, 0.45); }
.btn-primary:hover { background: var(--blue-400); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(200, 204, 212, 0.55); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; transform: translateY(-2px); }

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 48px;
  margin: 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(200, 204, 212, 0.2);
}
.hero-stats li { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
}
.stat-label { font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; color: var(--silver-300); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 84px 0; }
.section-alt { background: var(--silver-100); }
.section-navy {
  background:
    radial-gradient(900px 400px at 85% 0%, rgba(93, 126, 188, 0.30), transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy-700));
  color: #fff;
}
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-500);
  margin: 0 0 12px;
}
.section-eyebrow.light { color: var(--silver-300); }
.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  color: var(--navy-800);
  max-width: 22ch;
}
.section-title.light { color: #fff; }
.section-lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 64ch;
  margin: 0 0 40px;
}
.section-lead.light { color: var(--silver-200); }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--silver-200);
  border-top: 4px solid var(--blue-500);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 6px 18px rgba(8, 24, 50, 0.06);
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { font-size: 1.18rem; color: var(--navy-800); }
.card p { margin: 0; color: var(--ink-soft); font-size: 1rem; }
.card-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 204, 212, 0.18);
  border-top: 4px solid var(--blue-400);
}
.card-dark h3 { color: #fff; }
.card-dark p { color: var(--silver-200); }

/* Scroll reveal (progressive enhancement, JS adds .reveal) */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }

/* Accessible focus */
a:focus-visible, button:focus-visible, .btn:focus-visible, .apply-banner:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-copy p { color: var(--ink-soft); }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li {
  position: relative;
  padding: 8px 0 8px 34px;
  font-weight: 600;
  color: var(--navy-800);
  border-bottom: 1px solid var(--silver-200);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 10px;
  border-left: 3px solid var(--blue-500);
  border-bottom: 3px solid var(--blue-500);
  transform: rotate(-45deg);
}
.about-aside { display: flex; flex-direction: column; gap: 20px; }
.aside-card {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-600));
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.aside-year {
  font-family: var(--font-head);
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  color: #fff;
}
.aside-text { color: var(--silver-200); margin: 10px 0 0; }
.aside-region {
  border: 1px solid var(--silver-200);
  border-radius: var(--radius);
  padding: 24px 26px;
  background: #fff;
}
.aside-region h3 { font-size: 1.05rem; color: var(--navy-800); }
.aside-region p { margin: 0; color: var(--ink-soft); }

/* About banner + story text */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.section-banner { width: 100%; height: auto; display: block; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--silver-200); }
.about-text { display: none; max-width: 760px; margin: 0 auto; }
.safety-text { display: none; }
.about-text p { color: var(--ink-soft); }
.about-checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0 30px; margin-top: 18px; }

/* ---------- Partners ---------- */
.partner-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.partner-list li {
  background: #fff;
  border: 1px solid var(--silver-200);
  border-left: 4px solid var(--blue-500);
  border-radius: 8px;
  padding: 20px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy-800);
}
.partner-note { font-size: 0.92rem; color: var(--ink-soft); font-style: italic; max-width: 70ch; }
.section-navy .partner-note { color: var(--silver-300); }

/* ---------- Careers ---------- */
.apply-banner {
  display: block;
  max-width: 860px;
  margin: 0 auto 30px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--silver-200);
  transition: transform 0.15s, box-shadow 0.15s;
}
.apply-banner:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(8, 24, 50, 0.22); }
.apply-banner img { width: 100%; height: auto; }
.roles { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 36px; }
.role-chip {
  background: #fff;
  border: 1px solid var(--silver-200);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  color: var(--navy-800);
  box-shadow: 0 4px 12px rgba(8, 24, 50, 0.05);
}
.careers-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-600));
  color: #fff;
  border-radius: var(--radius);
  padding: 34px 34px;
  box-shadow: var(--shadow);
}
.careers-cta h3 { color: #fff; font-size: 1.4rem; margin-bottom: 6px; }
.careers-cta p { margin: 0; color: var(--silver-200); max-width: 52ch; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  background: var(--silver-100);
  border: 1px solid var(--silver-200);
  border-radius: var(--radius);
  padding: 12px 30px;
}
.contact-list { margin: 0; }
.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--silver-200);
}
.contact-row:last-child { border-bottom: none; }
.contact-row dt {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--navy-800);
  width: 90px;
  flex-shrink: 0;
}
.contact-row dd { margin: 0; font-size: 1.08rem; font-weight: 600; color: var(--ink); }
.contact-row dd a { text-decoration: none; }
.ph {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9a6b00;
  background: #fff3d6;
  border: 1px solid #ffe2a3;
  border-radius: 999px;
  padding: 2px 9px;
  vertical-align: middle;
}

/* Careers extras */
.careers-sub { margin: 32px 0 14px; color: var(--navy-800); font-size: 1.3rem; }
.careers-perks { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 0 36px; }

/* Contact form */
.contact-form .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field-row { display: flex; gap: 14px; }
.field-row .field { flex: 1; }
.contact-form label { font-weight: 600; font-size: 0.92rem; color: var(--navy-800); }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit;
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--silver-200);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(47, 79, 147, 0.16);
}
.contact-form button { margin-top: 6px; border: none; cursor: pointer; }
.contact-form input[type="file"] { padding: 9px 11px; background: var(--white); cursor: pointer; }
.hidden-field { position: absolute; left: -5000px; }

.vcard-btn {
  display: inline-block;
  margin: 18px 0 6px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--navy-800);
  border: 2px solid var(--silver-300);
  border-radius: 8px;
  padding: 10px 18px;
  transition: border-color 0.15s, color 0.15s;
}
.vcard-btn:hover { border-color: var(--blue-500); color: var(--blue-500); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.contact-actions .vcard-btn { margin: 0; }
.vcard-btn--solid { background: var(--blue-500); color: #fff; border-color: var(--blue-500); }
.vcard-btn--solid:hover { background: var(--blue-400); border-color: var(--blue-400); color: #fff; }
.contact-note { font-size: 0.85rem; color: var(--ink-soft); margin: 12px 0 0; }
.contact-map { margin-top: 34px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--silver-200); box-shadow: var(--shadow); }
.contact-map iframe { display: block; width: 100%; }

/* Live conditions band, pinned to the bottom of the hero */
.hero-conditions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(7, 20, 56, 0.66);
  border-top: 1px solid rgba(193, 193, 193, 0.16);
  backdrop-filter: blur(3px);
}
.conditions-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 18px; padding: 13px 22px; }
.cond-live { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1.6px; font-size: 0.72rem; color: var(--silver-300); }
.cond-dot { width: 9px; height: 9px; border-radius: 50%; background: #46d27f; flex-shrink: 0; animation: condpulse 2.2s infinite; }
@keyframes condpulse {
  0% { box-shadow: 0 0 0 0 rgba(70, 210, 127, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(70, 210, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(70, 210, 127, 0); }
}
.cond-data { color: #fff; font-weight: 600; font-size: 0.95rem; }
.cond-fire { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; font-size: 0.95rem; }
.cond-fire[hidden] { display: none; }
.cond-fire strong { font-weight: 700; }
.fire-dot { width: 11px; height: 11px; border-radius: 3px; background: #46d27f; flex-shrink: 0; }

/* Sticky mobile action bar */
.mobile-bar { display: none; }
.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 15px 8px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-decoration: none;
}
.mb-call { background: var(--navy-700); color: #fff; }
.mb-apply { background: var(--blue-500); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--navy-900);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='140'%3E%3Cg fill='none' stroke='%23c1c1c1' stroke-opacity='0.06' stroke-width='1.4'%3E%3Cpath d='M0 30 C 60 8 180 52 240 24'/%3E%3Cpath d='M0 72 C 60 50 180 94 240 66'/%3E%3Cpath d='M0 114 C 60 92 180 134 240 108'/%3E%3C/g%3E%3C/svg%3E");
  color: var(--silver-200);
  padding: 50px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px 40px;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { height: 60px; width: auto; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4)); }
.footer-name { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.5px; color: #fff; margin: 0; font-size: 1.05rem; }
.footer-tag { margin: 2px 0 0; font-size: 0.85rem; color: var(--silver-300); letter-spacing: 0.5px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: flex-end; }
.footer-nav a { color: var(--silver-200); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.footer-nav a:hover { color: #fff; }
.footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(200, 204, 212, 0.15);
  padding-top: 22px;
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--silver-300);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Medium screens (small laptops, tablets in landscape): keep the full desktop nav, just tighten it */
@media (min-width: 769px) and (max-width: 1040px) {
  .header-inner { min-height: 98px; }
  .brand-logo { height: 66px; }
  .brand-name { font-size: 0.95rem; }
  .brand-tag { font-size: 0.66rem; letter-spacing: 1.2px; }
  .primary-nav { gap: 2px; }
  .primary-nav a { padding: 8px 9px; font-size: 0.86rem; }
  .nav-cta { margin-left: 4px; }
  .hero { min-height: calc(100vh - 98px); }
}

@media (max-width: 768px), (hover: none) and (pointer: coarse) and (max-width: 1024px) {
  body { font-size: 18.5px; }
  .section-lead { font-size: 1.22rem; }
  .card p { font-size: 1.08rem; }
  .contact-row dd { font-size: 1.14rem; }
  .nav-toggle { display: flex; }
  .brand-logo { height: 80px; }
  .header-inner { min-height: 100px; }
  .theme-switch-label { display: none; }
  .theme-switch { gap: 12px; }
  .swatch { width: 26px; height: 26px; }
  .primary-nav {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-800);
    border-bottom: 1px solid rgba(200, 204, 212, 0.18);
    padding: 10px 16px 18px;
    display: none;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 18px 14px; border-radius: 8px; font-size: 1.26rem; }
  .nav-cta { margin: 10px 0 0; text-align: center; font-size: 1.26rem; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .field-row { flex-direction: column; gap: 0; }
  .section-banner { display: none; }
  .about-text, .safety-text { display: block; }
  body { padding-bottom: 96px; }
  .mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 95;
    box-shadow: 0 -6px 18px rgba(6, 16, 34, 0.25);
  }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
  .section { padding: 62px 0; }
  .hero { min-height: calc(100vh - 100px); }
  .hero-content { padding: 70px 22px 60px; }

  /* On phones the band leaves the hero entirely and becomes a fixed strip
     pinned directly on top of the Call/Apply action bar. This dodges the
     iOS Safari 100vh bug, where anchoring to the hero bottom pushed it
     off-screen behind Safari's toolbar. */
  .hero-conditions {
    position: fixed;
    bottom: 54px;
    left: 0; right: 0;
    z-index: 94;
  }
  .conditions-inner {
    justify-content: center;
    text-align: center;
    gap: 4px 14px;
    padding: 10px 16px;
  }
  .cond-live { font-size: 0.66rem; }
  .cond-data, .cond-fire { font-size: 0.88rem; }
}

@media (max-width: 480px) {
  .brand-name { font-size: 0.92rem; }
  .brand-logo { height: 66px; }
  .hero-stats { gap: 18px 28px; }
  .btn { width: 100%; text-align: center; }
  .careers-cta { padding: 26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .cond-dot { animation: none; }
}
