/* PIXWeather Theme — Main Stylesheet
   Fonts: Cormorant Garamond · DM Sans · DM Mono
   Loaded via functions.php from Google Fonts
   --------------------------------------------------------- */

:root {
  /* Primary accent — Nordic steel blue, inspired by Icelandic glacier landscape */
  --a:  #4A6B85;
  --al: #8AA3BB;
  --ap: #E9EEF4;
  --am: #5C7E9B;

  /* Secondary — deep Nordic navy */
  --sk: #3A5770;
  --sp: #DAE3EC;
  --sd: #213B50;

  /* Tertiary — muted tundra green */
  --g:  #4A5B4E;
  --gp: #E0E5E1;

  /* Neutrals — warm cream base retained for contrast, nudged slightly cooler */
  --w:  #FFFFFF;
  --cr: #F7F5F0;
  --st: #EAE6DE;
  --sm: #DBD6CC;

  /* Text — cool dark slate */
  --t:  #1C2128;
  --tm: #3E4550;
  --tu: #6C7480;

  /* Borders with cool tint */
  --b:  rgba(28,33,40,0.10);
  --bm: rgba(28,33,40,0.18);

  /* Shadows — slightly cooler */
  --sxs: 0 1px 4px rgba(20,25,32,0.06);
  --ss:  0 2px 10px rgba(20,25,32,0.08);
  --smd: 0 8px 32px rgba(20,25,32,0.10);
  --slg: 0 20px 60px rgba(20,25,32,0.12);
  --r: 8px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cr);
  color: var(--t);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 52px; }
section { padding: 100px 0; }

/* Eye-label (section prefix line) */
.ey {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--a);
  margin-bottom: 20px;
}
.ey::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--a);
  flex-shrink: 0;
}

.sdesc {
  color: var(--tu);
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.8;
  margin-top: 16px;
  font-weight: 300;
}

/* ── Buttons ─────────────────────────────────────────────── */
.bp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--a);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all .22s;
  box-shadow: 0 3px 14px rgba(200,134,42,0.28);
}
.bp:hover {
  background: #B5771F;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(200,134,42,0.36);
  color: #fff;
}
.bg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--tm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  padding: 13px 22px;
  border-radius: 4px;
  border: 1px solid var(--bm);
  cursor: pointer;
  transition: all .2s;
}
.bg:hover { border-color: var(--a); color: var(--a); }

/* ── Navigation ──────────────────────────────────────────── */
#sh {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(247,245,240,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--b);
  transition: box-shadow .3s, top .2s ease;
}
/* Offset when WordPress admin bar is visible (logged-in users) */
html.admin-bar #sh { top: 32px; }
@media screen and (max-width: 782px) {
  html.admin-bar #sh { top: 46px; }
}
.ni {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
}
.logo { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.lm { width: 38px; height: 38px; flex-shrink: 0; }
.lw {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.36rem;
  color: var(--t);
  letter-spacing: 0.02em;
  line-height: 1;
}
.lw span { color: var(--a); }
nav#pn { display: flex; align-items: center; gap: 36px; }
nav#pn a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.94rem;
  font-weight: 400;
  color: var(--tm);
  transition: color .2s;
}
nav#pn a:hover { color: var(--t); }
.no {
  background: var(--a) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 4px !important;
  font-weight: 400 !important;
  box-shadow: 0 2px 10px rgba(74,107,133,0.28) !important;
}
.no:hover { background: var(--sd) !important; }

/* ── Hero ────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: stretch;
  padding-top: 78px;
  background: var(--w);
}
.hl {
  padding: 80px 64px 80px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hl::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--b), transparent);
}
.hr {
  background: var(--st);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  overflow: hidden;
}
.hr::before {
  content: '';
  position: absolute;
  top: 15%; left: 50%;
  transform: translateX(-50%);
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(200,134,42,0.09) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Promo banner (top of hero, campaign-driven) ─────────── */
.promo-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #C95A4A 0%, #A44032 100%);
  color: #fff;
  text-decoration: none;
  padding: 8px 18px 8px 8px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  line-height: 1.3;
  box-shadow: 0 6px 20px rgba(164, 64, 50, 0.28), 0 1px 2px rgba(164, 64, 50, 0.15);
  margin-bottom: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  align-self: flex-start;
  max-width: 100%;
  animation: promoPulse 4.5s ease-in-out infinite;
}
.promo-banner:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(164, 64, 50, 0.4), 0 1px 2px rgba(164, 64, 50, 0.18);
}
.promo-banner .promo-badge {
  background: rgba(255, 255, 255, 0.22);
  font-family: 'DM Mono', monospace;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.promo-banner .promo-text {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.98);
}
.promo-banner .promo-text strong {
  font-weight: 700;
  color: #fff;
}
.promo-banner .promo-arrow {
  font-size: 1.05rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.promo-banner:hover .promo-arrow { transform: translateX(4px); }
@keyframes promoPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(164, 64, 50, 0.28), 0 1px 2px rgba(164, 64, 50, 0.15); }
  50%      { box-shadow: 0 8px 26px rgba(164, 64, 50, 0.38), 0 1px 2px rgba(164, 64, 50, 0.18); }
}

/* ── AERO 2026 Welcome card ───────────────────────────────
   Two variants:
     .aero-card                  — full-width, used standalone (no longer rendered)
     .aero-card.aero-card--hero  — compact, embedded inside the hero column
   ──────────────────────────────────────────────────────── */
.aero-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg, #F2F8EC 0%, #FFFFFF 70%);
  border: 1px solid rgba(124, 179, 66, 0.32);
  border-left: 4px solid #7CB342;
  border-radius: 14px;
  padding: 26px 30px;
  box-shadow: var(--ss);
  position: relative;
  overflow: hidden;
}
.aero-card::after {
  /* subtle decorative leaf in the corner — picks up the AERO sustainable-flight motif */
  content: '';
  position: absolute;
  right: -30px; bottom: -30px;
  width: 160px; height: 160px;
  background: radial-gradient(circle at 30% 30%, rgba(124, 179, 66, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.aero-card-mark {
  flex-shrink: 0;
  width: 60px; height: 60px;
  background: #fff;
  border: 1px solid rgba(124, 179, 66, 0.28);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(124, 179, 66, 0.15);
}
/* Photo variant — substantial booth photo on the left side */
.aero-card-photo {
  flex-shrink: 0;
  width: 320px;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(124, 179, 66, 0.18);
  background: var(--cr);
}
.aero-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.aero-card--has-photo { padding: 22px; gap: 28px; }

/* Hero-embedded variant — sized for the narrower hero left column */
.aero-card--hero {
  margin-top: 32px;
  padding: 16px;
  gap: 16px;
  border-radius: 10px;
  border-left-width: 3px;
}
.aero-card--hero.aero-card--has-photo { padding: 14px; gap: 16px; }
.aero-card--hero .aero-card-photo {
  width: 140px;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}
.aero-card--hero .aero-card-mark {
  width: 44px; height: 44px; border-radius: 8px;
}
.aero-card--hero .aero-card-mark svg { width: 26px; height: 26px; }
.aero-card--hero .aero-card-tag {
  font-size: 0.55rem;
  padding: 3px 8px;
  margin-bottom: 6px;
}
.aero-card--hero .aero-card-headline--hero {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--t);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.aero-card--hero .aero-card-body {
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 0 0 12px;
}
.aero-card--hero .aero-card-ctas { gap: 8px; }
.aero-card--hero .aero-cta {
  padding: 8px 14px;
  font-size: 0.78rem;
}
.aero-card-content {
  flex: 1;
  position: relative;
  z-index: 1;
}
.aero-card-tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5B8B2A;
  background: rgba(124, 179, 66, 0.14);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.aero-card-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--t);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.aero-card-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--tm);
  margin: 0 0 18px;
  max-width: 720px;
}
.aero-card-body strong { color: var(--t); font-weight: 600; }
.aero-card-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.aero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.aero-cta--primary {
  background: #7CB342;
  color: #fff;
  box-shadow: 0 3px 12px rgba(124, 179, 66, 0.32);
}
.aero-cta--primary:hover {
  background: #659130;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(124, 179, 66, 0.42);
}
.aero-cta--primary span { transition: transform 0.2s ease; }
.aero-cta--primary:hover span { transform: translateX(3px); }
.aero-cta--secondary {
  background: transparent;
  color: var(--tm);
  border: 1px solid var(--bm);
}
.aero-cta--secondary:hover {
  background: var(--cr);
  color: var(--t);
  border-color: var(--t);
}

/* Order-section promo callout — quieter echo of the hero banner */
.promo-callout {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: linear-gradient(135deg, rgba(201, 90, 74, 0.08) 0%, rgba(164, 64, 50, 0.12) 100%);
  border: 1px solid rgba(201, 90, 74, 0.25);
  border-left: 3px solid #C95A4A;
  border-radius: 8px;
  padding: 12px 14px;
  margin: 16px 0 10px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--tm);
}
.promo-callout .promo-badge {
  background: #C95A4A;
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 100px;
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 1px;
}
.promo-callout strong { color: var(--t); font-weight: 600; }
.promo-callout-text { flex: 1; }

.hep {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ap);
  border: 1px solid rgba(200,134,42,0.22);
  padding: 5px 14px 5px 8px;
  border-radius: 100px;
  margin-bottom: 32px;
  width: fit-content;
}
.lp {
  width: 22px; height: 22px;
  background: rgba(200,134,42,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lpd {
  width: 8px; height: 8px;
  background: var(--g);
  border-radius: 50%;
  animation: bl 2s ease-in-out infinite;
}
@keyframes bl {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(.75); }
}
.hep span {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--a);
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--t);
  margin-bottom: 24px;
}
h1 em { font-style: italic; color: var(--a); }
.hd {
  font-size: 1rem;
  color: var(--tu);
  max-width: 440px;
  line-height: 1.85;
  margin-bottom: 38px;
  font-weight: 300;
}
.ha { display: flex; gap: 12px; align-items: center; }

.hst {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 56px;
  border: 1px solid var(--b);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--cr);
}
.sc { padding: 18px 22px; border-right: 1px solid var(--b); }
.sc:last-child { border-right: none; }
.sn {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--t);
  margin-bottom: 4px;
}
.sn em { font-style: normal; color: var(--a); font-size: 1.2rem; }
.sl {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tu);
}

/* Hero right panel */
.hd2 { position: relative; width: 100%; max-width: 520px; }
.dc {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--w);
  border-radius: 16px;
  box-shadow: var(--slg);
  border: 1px solid var(--b);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.dc::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--a), var(--al), transparent);
}
.dc img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.dpi { font-size: 4.5rem; opacity: .6; }
.dpc {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tu);
}

/* Floating weather cards */
.wc {
  position: absolute;
  background: var(--w);
  border: 1px solid var(--bm);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: var(--smd);
  min-width: 110px;
  animation: dr 5s ease-in-out infinite;
}
.wc:nth-child(2) { animation-delay: -2.5s; }
.wc:nth-child(3) { animation-delay: -1.2s; }
@keyframes dr {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.wc { z-index: 2; }
.wc1 { top:    -42px; left:  6%;  }          /* Temperature — top-left, hanging up */
.wc2 { bottom: -42px; right: 6%;  }          /* Wind — bottom-right, hanging down */
.wc3 { bottom: -42px; left:  6%;  }          /* Status — bottom-left, hanging down */

/* Live station preview card — photo thumbnail + station name */
.wc4 {
  top: -42px;
  right: 6%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  min-width: 140px;
  visibility: hidden;        /* shown by JS once a live station is loaded */
}
.wc-thumb {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--st);
}
.wc-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.wc-meta .wcl { margin-bottom: 1px; }
.wc-meta .wcv {
  font-size: 0.76rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--t);
  white-space: nowrap;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wcl {
  font-family: 'DM Mono', monospace;
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tu);
  margin-bottom: 3px;
}
.wcv {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1;
}
.wcv.t { color: var(--a); }
.wcv.w { color: var(--sk); }
.wcv.s {
  color: var(--g);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: .8rem;
}

/* ── Trust / Deployed-at card grid ────────────────────────── */
#tr {
  background: var(--st);
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  padding: 84px 0;
}
#tr .container { max-width: 1200px; }
.tlbl {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--a);
  margin-bottom: 20px;
}
.tlbl::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--a);
  flex-shrink: 0;
}
#tr h2 {
  margin-bottom: 14px;
}
#tr .sdesc {
  margin-bottom: 44px;
}
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tcard {
  background: #fff;
  border: 1px solid var(--b);
  border-radius: var(--r);
  padding: 28px 26px;
  box-shadow: var(--sxs);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tcard:hover {
  transform: translateY(-2px);
  box-shadow: var(--ss);
  border-color: var(--bm);
}
.tcard-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--ap);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.tcard-icon svg {
  display: block;
}
.tcard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--t);
  line-height: 1.2;
  margin-bottom: 8px;
}
.tcard-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--tm);
}

/* ── Use Cases ───────────────────────────────────────────── */
#uc { background: var(--cr); }
.cg {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 52px;
}
.cc {
  border: 1px solid var(--b);
  border-radius: 12px;
  padding: 30px 26px 26px;
  background: var(--w);
  position: relative;
  overflow: hidden;
  transition: all .25s;
}
.cc:hover {
  border-color: var(--a);
  box-shadow: 0 8px 28px rgba(200,134,42,0.1);
  transform: translateY(-2px);
}
.cc.lead {
  background: linear-gradient(145deg, var(--ap) 0%, #FDF0CC 100%);
  border-color: rgba(200,134,42,0.3);
}
.cn {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 4rem;
  color: rgba(200,134,42,0.25);
  position: absolute;
  top: 4px; right: 16px;
  line-height: 1;
  pointer-events: none;
}
.ci { width: 44px; height: 44px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; }
.ct { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.95rem; margin-bottom: 10px; color: var(--t); }
.cd { font-size: 0.84rem; color: var(--tu); line-height: 1.75; }

/* ── Technology ──────────────────────────────────────────── */
#tech { background: var(--w); }
.tll {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;           /* pin right column to the top of the section */
  margin-top: 56px;
}
/* Heading + intro in-column variant: no top margin on the grid */
.tll--split { margin-top: 0; }
.tll--split .tlist-heading { margin-top: 6px; margin-bottom: 14px; }
.tll--split .tlist .sdesc   { margin-bottom: 40px; }
.tll--split .tlist .tit:first-of-type { margin-top: 8px; }
/* Right column offset — pushes the photo down by the eyebrow's vertical space
   (~10px text + 20px bottom margin) so the photo top aligns with the h2
   heading in the left column, not with the "CORE TECHNOLOGY" eyebrow above. */
.tll--split .tv { margin-top: 30px; }
.tlist { display: flex; flex-direction: column; }
.tit {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--b);
  align-items: start;
}
.tit:first-child { padding-top: 0; }
.tit:last-child  { border-bottom: none; padding-bottom: 0; }
.tic {
  width: 44px; height: 44px;
  background: var(--ap);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background .2s;
  font-size: 1.3rem;
}
.tit:hover .tic { background: rgba(200,134,42,0.15); }
.ttt { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.92rem; margin-bottom: 5px; color: var(--t); }
.tdt { font-size: 0.83rem; color: var(--tu); line-height: 1.72; }
.tv { position: relative; }
.tf {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, var(--sp) 0%, var(--ap) 100%);
  border-radius: 16px;
  border: 1px solid var(--b);
  box-shadow: var(--slg);
  display: flex; align-items: center; justify-content: center;
  font-size: 5.5rem;
  position: relative;
  overflow: hidden;
}
.tf img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }

/* ── Live station trend charts (above the live image) ────── */
.tf-charts {
  display: none;                 /* shown by JS once data is available */
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  padding: 14px;
  background: var(--w);
  border: 1px solid var(--b);
  border-radius: 12px;
  box-shadow: var(--ss);
}
.tf-charts.ready { display: flex; }
.tf-charts-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}
.tf-charts-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tu);
}
.tf-range {
  display: inline-flex;
  gap: 4px;
  background: var(--cr);
  border: 1px solid var(--b);
  border-radius: 20px;
  padding: 3px;
}
.tf-range-btn {
  border: 0;
  background: transparent;
  color: var(--tu);
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 16px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.tf-range-btn:hover { color: var(--t); }
.tf-range-btn.is-active {
  background: var(--a);
  color: #fff;
}
.tf-chart-card {
  padding: 8px 8px 6px;
  background: var(--cr);
  border: 1px solid var(--b);
  border-radius: 8px;
}
.tf-chart-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tu);
  padding: 2px 4px 6px;
}
.tf-chart-unit {
  font-weight: 400;
  opacity: 0.7;
  font-size: 0.56rem;
  text-transform: none;            /* preserve unit casing (hPa, °C, m/s) */
  letter-spacing: 0.02em;
}
.tf-chart-wrap {
  position: relative;
  height: 120px;
  width: 100%;
}
.tf-chart-wrap canvas {
  display: block;
  max-width: 100%;
}
/* Compact wrap for humidity + pressure */
.tf-chart-wrap--sm { height: 90px; }
/* Wind direction arrow strip — embedded inside the Wind Speed card,
   sits directly under the chart's x-axis timestamps */
.tf-chart-wrap--dir {
  height: 22px;
  padding: 0 2px;
  margin-top: 2px;
  border-top: 1px dashed var(--b);
}
/* Photo wrapper — positions the live badge relative to the image, so the
   badge stays anchored under the image when charts render beneath it */
.tf-photo { position: relative; margin-bottom: 28px; }
.lb {
  position: absolute;
  bottom: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--w);
  border: 1px solid var(--bm);
  border-radius: 100px;
  padding: 8px 18px;
  box-shadow: var(--ss);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  z-index: 3;
}
.lbd { width: 7px; height: 7px; background: var(--g); border-radius: 50%; animation: bl 1.5s infinite; }
.lbt { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.08em; color: var(--tu); }

/* ── Specifications ───────────────────────────────────────── */
#sp { background: var(--cr); }
.spll {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 52px;
  align-items: start;
}
.stg { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stl {
  background: var(--w);
  border: 1px solid var(--b);
  border-radius: var(--r);
  padding: 18px;
  transition: all .2s;
}
.stl:hover { border-color: var(--a); background: var(--ap); }
.sti { font-size: 1.2rem; margin-bottom: 8px; display: block; }
.stn { font-family: 'DM Mono', monospace; font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tu); margin-bottom: 3px; }
.stv { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: 0.88rem; color: var(--t); }
.srws { display: flex; flex-direction: column; }
.srw {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--b);
  gap: 20px;
}
.srw:last-child { border-bottom: none; }
.srl { font-size: 0.84rem; color: var(--tu); font-weight: 300; }
.srv { font-family: 'DM Mono', monospace; font-size: 0.75rem; color: var(--t); text-align: right; }

/* ── Order / Pricing ─────────────────────────────────────── */
#ord { background: var(--st); }
.orl {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
  margin-top: 52px;
}
.pc {
  background: var(--w);
  border: 1px solid var(--bm);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--smd);
}
.pct {
  padding: 28px 32px;
  border-bottom: 1px solid var(--b);
  background: linear-gradient(135deg, var(--ap), #FFF0D0);
  position: relative;
  overflow: hidden;
}
.pct::after {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(200,134,42,0.08);
}
.pctt {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--t);
  margin-bottom: 3px;
}
.pcts {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tu);
}
.pb { padding: 24px 32px; }
.pr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--b);
  gap: 16px;
}
.pr:last-of-type { border-bottom: none; }
.prl2 { font-size: 0.88rem; color: var(--t); }
.prs { font-family: 'DM Mono', monospace; font-size: 0.6rem; color: var(--tu); margin-top: 2px; }
.pa {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--t);
  text-align: right;
  flex-shrink: 0;
}
.pa small {
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  font-size: 0.56rem;
  color: var(--tu);
  display: block;
  text-align: right;
}
.ptot {
  background: var(--ap);
  border: 1px solid rgba(200,134,42,0.22);
  border-radius: var(--r);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.ptl { font-weight: 400; font-size: 0.88rem; }
.ptss { font-family: 'DM Mono', monospace; font-size: 0.56rem; color: var(--tu); margin-top: 2px; }
.pta { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 2rem; color: var(--a); text-align: right; }

.incl {
  background: var(--cr);
  border: 1px solid var(--b);
  border-radius: var(--r);
  padding: 20px;
  margin-top: 14px;
}
.inct { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tu); margin-bottom: 12px; }
.incr { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--tm); padding: 4px 0; font-weight: 300; }
.inck {
  width: 16px; height: 16px;
  background: var(--gp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.55rem;
  color: var(--g);
}

/* Sidebar CTA */
.ctap { position: sticky; top: 86px; }
.ctab {
  background: var(--w);
  border: 1px solid var(--bm);
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--ss);
}
.stag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gp);
  border: 1px solid rgba(45,106,79,0.2);
  border-radius: 100px;
  padding: 5px 12px;
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--g);
  margin-bottom: 22px;
}
.ctad { font-size: 0.86rem; color: var(--tu); line-height: 1.75; margin-bottom: 18px; font-weight: 300; }
.ctabtn {
  width: 100%;
  background: var(--a);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  padding: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all .22s;
  box-shadow: 0 4px 14px rgba(200,134,42,0.28);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.ctabtn:hover { background: #B5771F; transform: translateY(-1px); box-shadow: 0 7px 22px rgba(200,134,42,0.35); }
.suc {
  display: none;
  margin-top: 14px;
  background: var(--gp);
  border: 1px solid rgba(45,106,79,0.2);
  border-radius: 8px;
  padding: 14px 16px;
  align-items: center;
  gap: 12px;
  font-size: 0.83rem;
  color: var(--g);
  line-height: 1.6;
}
.ddp {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--sp);
  border: 1px solid rgba(44,110,158,0.15);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 0.78rem;
  color: var(--sd);
  line-height: 1.65;
  margin-top: 14px;
  font-weight: 300;
}
.subn {
  background: var(--cr);
  border: 1px solid var(--b);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 0.78rem;
  color: var(--tu);
  line-height: 1.7;
  margin-top: 10px;
  font-weight: 300;
}
.vatn { font-family: 'DM Mono', monospace; font-size: 0.58rem; color: var(--tu); text-align: center; margin-top: 12px; line-height: 1.7; }
.secr { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 12px; }
.seci { font-family: 'DM Mono', monospace; font-size: 0.55rem; color: var(--tu); }

/* ── Testimonials ─────────────────────────────────────────── */
#tm { background: var(--w); }
.pg {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 52px;
}
.pcard {
  background: var(--cr);
  border: 1px solid var(--b);
  border-radius: 12px;
  padding: 26px;
  transition: all .22s;
}
.pcard:hover { border-color: rgba(200,134,42,0.3); box-shadow: var(--ss); }
.pst { color: var(--am); letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 14px; }
.ptx {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--tm);
  line-height: 1.65;
  margin-bottom: 20px;
}
.pau { display: flex; align-items: center; gap: 12px; }
.pav {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ap);
  border: 1px solid rgba(200,134,42,0.2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--a);
  flex-shrink: 0;
}
.pnm { font-weight: 500; font-size: 0.84rem; margin-bottom: 2px; }
.prl { font-family: 'DM Mono', monospace; font-size: 0.58rem; color: var(--tu); }

/* ── FAQ ─────────────────────────────────────────────────── */
#fq { background: var(--cr); }
.fg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 72px;
  margin-top: 52px;
}
.fi { border-bottom: 1px solid var(--b); padding: 20px 0; }
.fqq {
  font-weight: 400;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: var(--t);
  line-height: 1.5;
}
.ftg {
  width: 22px; height: 22px;
  border: 1px solid var(--bm);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--a);
  transition: all .2s;
  font-weight: 300;
  margin-top: 1px;
}
.fi.open .ftg { background: var(--ap); border-color: var(--a); transform: rotate(45deg); }
.fa {
  font-size: 0.84rem;
  color: var(--tu);
  line-height: 1.78;
  overflow: hidden;
  max-height: 0;
  transition: max-height .32s ease, margin-top .2s;
  font-weight: 300;
}
.fi.open .fa { margin-top: 10px; }

/* ── Footer ──────────────────────────────────────────────── */
#ft { background: var(--t); padding: 64px 0 36px; }
.ftp {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 48px;
}
.fbr { margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.fbn {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.02em;
}
.fbn span { color: var(--al); }
.fdc { font-size: 0.83rem; color: rgba(255,255,255,0.42); line-height: 1.75; max-width: 255px; margin-bottom: 22px; font-weight: 300; }
.fct { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 14px; }
.fli li { margin-bottom: 9px; }
.fli a { font-size: 0.83rem; color: rgba(255,255,255,0.48); transition: color .2s; font-weight: 300; }
.fli a:hover { color: rgba(255,255,255,0.85); }
.abs { display: flex; gap: 8px; }
.ab {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  padding: 7px 13px;
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: 5px;
  transition: all .2s;
}
.ab:hover { background: rgba(255,255,255,0.12); color: rgba(255,255,255,.8); }
.fbt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.fcp { font-family: 'DM Mono', monospace; font-size: 0.58rem; color: rgba(255,255,255,0.25); letter-spacing: 0.04em; }

/* ── Scroll reveal animation ─────────────────────────────── */
.rev {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.rev.visible { opacity: 1; transform: translateY(0); }

@keyframes fu {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hl > * { animation: fu .5s ease both; }
.hl > *:nth-child(1) { animation-delay: .05s; }
.hl > *:nth-child(2) { animation-delay: .12s; }
.hl > *:nth-child(3) { animation-delay: .19s; }
.hl > *:nth-child(4) { animation-delay: .26s; }
.hl > *:nth-child(5) { animation-delay: .33s; }

/* ── Inner page styles ───────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--st) 0%, var(--w) 100%);
  border-bottom: 1px solid var(--b);
  padding: 142px 0 72px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}
.page-hero .subtitle {
  font-size: 1rem;
  color: var(--tu);
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
}

.prose-section { padding: 80px 0; max-width: 760px; margin: 0 auto; }
.prose-section h2 { font-size: 1.6rem; margin: 48px 0 14px; }
.prose-section h3 { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 1rem; margin: 28px 0 8px; }
.prose-section p  { font-size: 0.95rem; color: var(--tu); line-height: 1.85; margin-bottom: 14px; font-weight: 300; }
.prose-section ul { margin: 0 0 14px 20px; list-style: disc; }
.prose-section ul li { font-size: 0.95rem; color: var(--tu); line-height: 1.85; margin-bottom: 6px; font-weight: 300; }

/* Contact form */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; padding: 80px 0; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 32px; }
.cii-icon {
  width: 44px; height: 44px;
  border-radius: var(--r);
  background: var(--ap);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cii-label { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tu); margin-bottom: 4px; }
.cii-value { font-size: 0.95rem; color: var(--t); font-weight: 400; }
.cii-value a { color: var(--a); }

.contact-form-card {
  background: var(--w);
  border: 1px solid var(--b);
  border-radius: 14px;
  padding: 40px;
  box-shadow: var(--ss);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 400; color: var(--tm); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--bm);
  border-radius: var(--r);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--t);
  background: var(--cr);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  font-weight: 300;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--a);
  box-shadow: 0 0 0 3px rgba(200,134,42,0.1);
  background: var(--w);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* About page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 0; }
.about-stat-row { display: flex; gap: 40px; margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--b); }
.about-stat-val { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600; color: var(--t); line-height: 1; margin-bottom: 4px; }
.about-stat-val em { font-style: normal; color: var(--a); }
.about-stat-lbl { font-family: 'DM Mono', monospace; font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--tu); }

/* ═══════════════════════════════════════════════════════════
   Sales / marketing sections (always loaded, no WC dependency)
   ═══════════════════════════════════════════════════════════ */

/* ── Comparison table (#cmp) ─────────────────────────────── */
#cmp { padding: 100px 0; background: #fff; }
.cmp {
  background: var(--cr);
  border: 1px solid var(--b);
  border-radius: var(--r);
  padding: 18px 8px;
  box-shadow: var(--ss);
  margin-top: 40px;
  overflow-x: auto;
}
.cmp-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--b);
}
.cmp-row:last-child { border-bottom: none; }
.cmp-row.cmp-head { border-bottom: 2px solid var(--a); padding-bottom: 18px; }
.cmp-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--t);
  font-weight: 400;
}
.cmp-head .cmp-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tu);
}
.cmp-cell {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--tu);
  line-height: 1.25;
}
.cmp-cell strong {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--a);
}
.cmp-cell.cmp-us {
  background: var(--ap);
  border-radius: 4px;
  margin: -6px 4px;
  padding: 10px 4px;
  color: var(--t);
}
.cmp-yes {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  background: var(--a);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}
.cmp-us .cmp-yes { box-shadow: 0 0 0 3px rgba(200, 134, 42, 0.15); }
.cmp-no {
  display: inline-block;
  color: var(--tu);
  font-size: 1.2rem;
  opacity: 0.45;
}

/* ── How it works (#hiw) ─────────────────────────────────── */
#hiw { padding: 100px 0; background: var(--ap); }
.hiw-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 48px;
}
.hiw-step {
  flex: 1;
  background: #fff;
  border: 1px solid var(--b);
  border-radius: var(--r);
  padding: 32px 28px;
  box-shadow: var(--ss);
}
.hiw-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 2.4rem;
  color: var(--a);
  line-height: 1;
  margin-bottom: 12px;
}
.hiw-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--t);
  margin-bottom: 8px;
  font-weight: 500;
}
.hiw-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--tm);
  line-height: 1.55;
  margin: 0;
  font-weight: 300;
}
.hiw-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--a);
  min-width: 24px;
  flex-shrink: 0;
}

/* ── REST API snippet ────────────────────────────────────── */
.api-snippet {
  display: block;
  background: var(--cr);
  border: 1px solid var(--b);
  border-radius: var(--r);
  padding: 14px 18px;
  margin-top: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  color: var(--tm);
  overflow-x: auto;
  white-space: pre;
  line-height: 1.55;
}
.api-snippet code { font-family: inherit; color: inherit; }

/* ── Station photo block (#sp) ───────────────────────────── */
.station-photo {
  margin-top: 56px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--b);
  border-radius: var(--r);
  box-shadow: var(--ss);
}
.station-photo-frame {
  border-radius: calc(var(--r) - 2px);
  overflow: hidden;
  position: relative;
}
.station-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.station-photo-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 8px 4px;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tu);
}
.station-photo-caption .lpd {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5ADB7D;
  animation: bl 1.6s ease-in-out infinite;
  margin-right: 8px;
  vertical-align: middle;
}
@keyframes bl {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.75); }
}

/* ── Testimonial metric row (.pmetric) ───────────────────── */
.pmetric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 0;
  margin: 16px 0;
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
}
.pmv {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 1.9rem;
  color: var(--a);
  line-height: 1;
}
.pml {
  font-family: 'DM Mono', monospace;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tu);
}

/* ── Sticky bottom CTA bar (#sbar) ───────────────────────── */
.sbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: rgba(26, 23, 20, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  color: #fff;
  padding: 14px 0 calc(14px + env(safe-area-inset-bottom));
  transform: translateY(120%);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
}
.sbar.visible { transform: translateY(0); }
.sbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sbar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
  line-height: 1.2;
}
.sbar-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}
.sbar-stock .lpd {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5ADB7D;
  animation: bl 1.6s ease-in-out infinite;
}
.sbar-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}
.sbar-price small {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 6px;
}
.sbar-cta {
  flex-shrink: 0;
  padding: 12px 24px !important;
  font-size: 0.9rem !important;
}
.sbar-cta:hover { transform: translateY(-1px); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cg { grid-template-columns: 1fr 1fr; }
  .pg { grid-template-columns: 1fr 1fr; }
  .ftp { grid-template-columns: 1fr 1fr; }
  .tgrid { grid-template-columns: 1fr 1fr; }
  .cmp-row { grid-template-columns: 1.6fr 1fr 1fr 1fr; padding: 12px 12px; }
  .cmp-label, .cmp-head .cmp-label { font-size: 0.82rem; }
  .cmp-cell { font-size: 0.7rem; }
  .hiw-row { flex-direction: column; }
  .hiw-arrow { transform: rotate(90deg); padding: 6px 0; }
}

@media (max-width: 768px) {
  .ni { padding: 0 20px; }
  nav#pn { display: none; }
  #hero { grid-template-columns: 1fr; }
  .hl { padding: 48px 20px; }
  .hr { min-height: 55vw; padding: 48px 22px; }
  /* Hero floating cards — scaled down so all four corners fit on a narrow image */
  .wc { min-width: 0; padding: 7px 10px; }
  .wc1, .wc2, .wc3, .wc4 {
    top: auto; bottom: auto; left: auto; right: auto;
  }
  .wc1 { top:    -34px; left:  4%; }
  .wc2 { bottom: -34px; right: 4%; }
  .wc3 { bottom: -34px; left:  4%; }
  .wc4 { top:    -34px; right: 4%; max-width: 46%; padding: 5px 9px 5px 5px; }
  .wc-thumb { width: 34px; height: 34px; }
  .wcl { font-size: 0.48rem; }
  .wcv { font-size: 0.82rem; }
  .wc-meta .wcv { font-size: 0.64rem; max-width: 70px; }
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .tll, .tll--split { grid-template-columns: 1fr; gap: 40px; }
  /* Tech right panel shows on mobile — reset desktop offset for single-column stack */
  .tll--split .tv { margin-top: 0; }
  .tf-charts { padding: 10px; }
  .tf-chart-wrap     { height: 110px; }
  .tf-chart-wrap--sm { height: 86px; }
  .tf-chart-wrap--dir { height: 22px; }
  .tf-photo { margin-bottom: 32px; }
  .promo-banner {
    font-size: 0.78rem;
    padding: 6px 14px 6px 6px;
    gap: 10px;
  }
  .promo-banner .promo-badge { font-size: 0.58rem; padding: 4px 10px; }
  .aero-card { flex-direction: column; padding: 22px 22px; gap: 16px; }
  .aero-card--has-photo { padding: 16px; gap: 18px; }
  .aero-card-mark { width: 48px; height: 48px; }
  .aero-card-mark svg { width: 28px; height: 28px; }
  .aero-card-photo { width: 100%; aspect-ratio: 16 / 9; }
  .aero-card-ctas { flex-direction: column; align-items: stretch; }
  .aero-cta { justify-content: center; }
  .aero-card--hero { margin-top: 24px; padding: 14px; }
  .aero-card--hero .aero-card-photo { width: 100%; aspect-ratio: 16 / 9; }
  .aero-card--hero .aero-card-headline--hero { font-size: 1.15rem; }
  .spll, .orl { grid-template-columns: 1fr; }
  .cg, .pg { grid-template-columns: 1fr; }
  .fg { grid-template-columns: 1fr; gap: 0; }
  .ftp { grid-template-columns: 1fr; }
  .fbt { flex-direction: column; gap: 10px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .prose-section { padding: 48px 0; }
  #tr { padding: 56px 0; }
  #tr .sdesc { margin-bottom: 32px; }
  .tgrid { grid-template-columns: 1fr; gap: 14px; }
  .tcard { padding: 22px 20px; }
  #cmp, #hiw { padding: 64px 0; }
  .cmp { padding: 10px 2px; }
  .cmp-row {
    grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr;
    padding: 10px 6px;
  }
  .cmp-label, .cmp-head .cmp-label { font-size: 0.7rem; }
  .cmp-cell { font-size: 0.64rem; }
  .cmp-head .cmp-cell { font-size: 0.58rem; line-height: 1.2; }
  .cmp-cell strong { font-size: 0.86rem; }
  .cmp-yes { width: 18px; height: 18px; line-height: 18px; font-size: 0.72rem; }
  .hiw-step { padding: 24px 20px; }
  .sbar-price { font-size: 1.1rem; }
  .sbar-price small { display: none; }
  .sbar-cta { padding: 10px 16px !important; font-size: 0.82rem !important; }
}

@media (max-width: 420px) {
  .sbar { display: none; }
  .cmp-row { grid-template-columns: 1.2fr 0.85fr 0.85fr 0.85fr; }
}
