/* ═══════════════════════════════════════════════════════════
   Metrico — shared site stylesheet
   Consolidated from the previous single-page site so every
   page shares one design system.
   ═══════════════════════════════════════════════════════════ */
:root {
  --navy:      #0B2447;
  --teal:      #00B4D8;
  --terra:     #E76F51;
  --slate:     #F3F4F6;
  --white:     #ffffff;
  --navy-mid:  #163566;
  --teal-dark: #0090AD;
  --text:      #1a1a2e;
  --muted:     #6b7280;
  --font-display: 'DM Serif Display', serif;
  --font-body:    'Montserrat', 'DM Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --radius: 4px;
  --transition: 0.25s ease;

  /* Leak Manager severity palette */
  --lm-navy:   #0A2540;
  --lm-navy-2: #0D3B5E;
  --lm-teal:   #0D9488;
  --lm-teal-l: #5EEAD4;
  --lm-ice:    #E0F2FE;
  --lm-slate:  #475569;
  --sev-major:    #B30000;
  --sev-moderate: #E67300;
  --sev-minor:    #CC9900;
  --sev-anomaly:  #7A1F8C;

  /* WaterWatch accent */
  --ww-blue:  #0369A1;
  --ww-sky:   #E0F2FE;

  /* Backflow accent */
  --bf-green: #15803D;
  --bf-mint:  #ECFDF5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── UTILITY ─────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Page fade-in (was the SPA transition) */
main { animation: fadeUp 0.45s ease forwards; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  main { animation: none; }
  html { scroll-behavior: auto; }
}

/* ─── HEADER ──────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--teal);
  box-shadow: 0 2px 24px rgba(11,36,71,0.18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; text-decoration: none; cursor: pointer; }
.logo img { height: 52px; width: auto; display: block; }

nav.desktop-nav { display: flex; align-items: center; gap: 4px; }
nav.desktop-nav a {
  font-family: var(--font-body); font-size: 13.5px; font-weight: 500;
  color: var(--navy);
  text-decoration: none; padding: 8px 14px; border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  cursor: pointer; letter-spacing: 0.3px;
}
nav.desktop-nav a:hover  { color: var(--teal); background: rgba(0,180,216,0.08); }
nav.desktop-nav a.active { color: var(--teal); }
.nav-login {
  background: var(--navy) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.nav-login:hover { background: var(--navy-mid) !important; }

/* Products dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '▾'; font-size: 10px; margin-left: 5px; opacity: 0.6;
}
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid #e5e7eb; border-top: 2px solid var(--teal);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 16px 40px rgba(11,36,71,0.16);
  padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block; width: 100%;
  padding: 10px 18px !important; border-radius: 0 !important;
  font-size: 13.5px;
}
.nav-dropdown-menu a small {
  display: block; font-size: 11px; font-weight: 400; color: var(--muted);
  margin-top: 2px; letter-spacing: 0;
}
.nav-dropdown-menu a:hover small { color: var(--teal-dark); }
.nav-dropdown-menu .menu-hero {
  border-bottom: 1px solid #f3f4f6; margin-bottom: 6px; padding-bottom: 12px !important;
}
.menu-tag {
  display: inline-block; font-family: var(--font-mono); font-size: 8.5px;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700;
  color: var(--white); background: var(--terra);
  border-radius: 3px; padding: 2px 6px; margin-left: 8px; vertical-align: middle;
}

/* Hamburger + mobile nav */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--white);
  border-top: 1px solid rgba(0,180,216,0.2);
  padding: 12px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 15px; font-weight: 500;
  color: var(--navy);
  text-decoration: none; padding: 13px 24px;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.mobile-nav a:hover  { background: rgba(0,180,216,0.1); color: var(--teal); }
.mobile-nav a.active { color: var(--teal); }
.mobile-nav .sub { padding-left: 44px; font-size: 14px; color: var(--navy-mid); }

@media (max-width: 820px) {
  nav.desktop-nav { display: none; }
  .hamburger { display: flex; }
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; margin-bottom: 40px;
}
.footer-col h4 {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  color: var(--teal); text-transform: uppercase; letter-spacing: 2.5px;
  margin-bottom: 16px;
}
.footer-col p, .footer-col a {
  display: block; font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.65); text-decoration: none;
}
.footer-col a { cursor: pointer; margin-bottom: 6px; }
.footer-col a:hover { color: var(--teal); }
.footer-col p a { display: inline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── SECTION HELPERS ─────────────────────────────────── */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-dark  { background: var(--navy); color: var(--white); }
.section-slate { background: var(--slate); }

.section-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px; display: block;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15; color: var(--navy);
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--teal); }
.section-body {
  font-size: 16px; line-height: 1.75; color: var(--muted);
  max-width: 620px; margin-top: 16px;
}
.section-body.light { color: rgba(255,255,255,0.7); }

/* CTA buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  padding: 13px 26px; border-radius: var(--radius);
  border: none; cursor: pointer; text-decoration: none;
  transition: all var(--transition); letter-spacing: 0.3px;
}
.btn-primary { background: var(--teal); color: var(--navy); }
.btn-primary:hover { background: #00c8f0; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,180,216,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-terra { background: var(--terra); color: var(--white); }
.btn-terra:hover { background: #d4623e; transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ─── HOME: HERO ──────────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 110px 0 90px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.ripple {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(0,180,216,0.12);
  animation: rippleExpand 8s linear infinite;
}
.ripple:nth-child(2) { width: 400px; height: 400px; top: -100px; right: -80px; animation-delay: 0s; }
.ripple:nth-child(3) { width: 600px; height: 600px; top: -200px; right: -180px; animation-delay: 2s; }
.ripple:nth-child(4) { width: 800px; height: 800px; top: -300px; right: -280px; animation-delay: 4s; }
.ripple:nth-child(5) { width: 300px; height: 300px; bottom: -100px; left: -60px; animation-delay: 1s; border-color: rgba(231,111,81,0.08); }
@keyframes rippleExpand {
  0%   { opacity: 0.6; transform: scale(0.95); }
  50%  { opacity: 0.3; }
  100% { opacity: 0; transform: scale(1.05); }
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,180,216,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-slash {
  position: absolute; bottom: 0; right: 0;
  width: 45%; height: 100%;
  background: linear-gradient(135deg, transparent 50%, rgba(0,180,216,0.04) 50%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--teal);
  margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--teal); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: var(--white); line-height: 1.1; margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--teal); }
.hero-sub {
  font-size: 16px; line-height: 1.75;
  color: rgba(255,255,255,0.65); margin-bottom: 36px; max-width: 480px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero data panel */
.hero-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 12px; padding: 32px;
  backdrop-filter: blur(10px);
}
.hero-panel-title {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal);
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.hero-panel-title::after { content: ''; flex: 1; height: 1px; background: rgba(0,180,216,0.2); }
.hero-stat {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-stat:last-child { border-bottom: none; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); }
.hero-stat-value { font-family: var(--font-mono); font-size: 16px; color: var(--white); font-weight: 700; }
.hero-stat-value span { font-size: 11px; color: var(--terra); margin-left: 4px; }
.hero-stat-value .ok { color: #4ade80; }
.hero-bar-row { margin-top: 20px; }
.hero-bar-label { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.hero-bar-track { height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.hero-bar-fill { height: 100%; border-radius: 3px; animation: barGrow 1.8s ease forwards; transform-origin: left; }
@keyframes barGrow { from { width: 0; } }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-panel { display: none; }
}

/* Claims strip */
.stats-strip { background: var(--teal); padding: 36px 0; }
.stats-row {
  display: flex; justify-content: space-around; align-items: flex-start;
  flex-wrap: wrap; gap: 28px;
}
.stat-item {
  display: flex; align-items: flex-start; gap: 14px;
  max-width: 220px; flex: 1; min-width: 160px;
}
.stat-icon { flex-shrink: 0; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; }
.stat-icon svg { width: 28px; height: 28px; stroke: var(--navy); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.stat-num {
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  color: var(--navy); display: block; line-height: 1.3; margin-bottom: 4px;
}
.stat-label { font-size: 12px; font-weight: 400; color: rgba(11,36,71,0.65); line-height: 1.45; }

/* Features grid */
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px; margin-top: 56px;
}
.feature-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 8px; padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--teal); transform: scaleX(0);
  transform-origin: left; transition: transform 0.35s ease;
}
.feature-card:hover { box-shadow: 0 12px 36px rgba(11,36,71,0.1); transform: translateY(-3px); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 22px;
}
.feature-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 10px; color: var(--navy); }
.feature-card p  { font-size: 14px; line-height: 1.7; color: var(--muted); }
.feature-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--teal);
  text-decoration: none; margin-top: 16px; cursor: pointer;
  transition: gap var(--transition);
}
.feature-link:hover { gap: 10px; }
@media (max-width: 980px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* Sector strip */
.sector-strip {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #163566 100%);
  position: relative; overflow: hidden;
}
.sector-strip::before {
  content: '3W';
  position: absolute; right: -20px; top: -40px;
  font-family: var(--font-display); font-size: 200px; font-weight: 700;
  color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none;
}
.sector-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sector-inner p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.65); margin-top: 16px; }
.sector-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.sector-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.8); }
.sector-list li::before { content: ''; width: 8px; height: 8px; border-radius: 2px; background: var(--teal); flex-shrink: 0; }
@media (max-width: 768px) { .sector-inner { grid-template-columns: 1fr; gap: 32px; } }

/* ─── PAGE HERO (interior pages) ──────────────────────── */
.page-hero {
  background: var(--navy); padding: 72px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--teal), var(--terra));
}
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white); margin-bottom: 14px;
}
.page-hero h1 em { font-style: italic; color: var(--teal); }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 540px; line-height: 1.7; }
.page-hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.page-hero .hero-cta { margin-top: 28px; }
.hero-visual {
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .page-hero { padding: 56px 0 48px; }
}

/* Breadcrumb */
.page-head-bar { background: var(--slate); border-bottom: 1px solid #e5e7eb; padding: 10px 0; }
.breadcrumb { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--teal); cursor: pointer; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ─── PRODUCT BLOCKS ──────────────────────────────────── */
.product-block { padding: 72px 0; border-bottom: 1px solid #e5e7eb; }
.product-block:last-child { border-bottom: none; }
.product-block-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.product-block-inner.reverse { direction: rtl; }
.product-block-inner.reverse > * { direction: ltr; }
.product-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--terra);
  margin-bottom: 10px; display: block;
}
.product-block h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 14px; }
.product-block p  { font-size: 15px; line-height: 1.78; color: var(--muted); margin-bottom: 20px; }
.feature-list { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.5; }
.feature-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.product-visual {
  border-radius: 12px; overflow: hidden;
  background: var(--slate);
  border: 1px solid #e5e7eb;
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.product-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) {
  .product-block-inner { grid-template-columns: 1fr; gap: 32px; }
  .product-block-inner.reverse { direction: ltr; }
}

/* ─── PRODUCTS OVERVIEW PAGE ──────────────────────────── */
.product-index-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.product-index-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid #e5e7eb; border-radius: 10px;
  overflow: hidden; text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-index-card:hover { box-shadow: 0 14px 40px rgba(11,36,71,0.12); transform: translateY(-3px); }
.product-index-media { height: 170px; background: var(--navy); position: relative; overflow: hidden; }
.product-index-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-index-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.product-index-body h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; }
.product-index-body p { font-size: 14px; line-height: 1.65; color: var(--muted); flex: 1; }
.product-index-body .feature-link { margin-top: 18px; }
@media (max-width: 900px) { .product-index-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .product-index-grid { grid-template-columns: 1fr; } }

/* WaterWatch showcase band on products page */
.ww-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--ww-blue) 130%);
  position: relative; overflow: hidden;
  padding: 72px 0;
}
.ww-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 30px 30px; pointer-events: none;
}
.ww-band-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.ww-band h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: var(--white); margin-bottom: 14px; }
.ww-band h2 em { font-style: italic; color: var(--lm-teal-l); }
.ww-band p { font-size: 15.5px; line-height: 1.75; color: rgba(255,255,255,0.7); margin-bottom: 24px; max-width: 520px; }
.ww-chip {
  display: inline-block; font-family: var(--font-mono); font-size: 9.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--navy); background: var(--lm-teal-l);
  border-radius: 3px; padding: 4px 10px; margin-bottom: 18px;
}
@media (max-width: 860px) { .ww-band-inner { grid-template-columns: 1fr; gap: 40px; } }

/* Phone mockup (WaterWatch) */
.phone-mock {
  width: 260px; margin: 0 auto;
  background: #0d1b2e; border-radius: 34px; padding: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}
.phone-screen {
  background: #f8fafc; border-radius: 24px; overflow: hidden;
  display: flex; flex-direction: column; min-height: 440px;
}
.phone-head {
  background: var(--navy); color: var(--white);
  padding: 18px 16px 14px;
}
.phone-head .ph-title { font-size: 13px; font-weight: 700; letter-spacing: 0.3px; }
.phone-head .ph-sub { font-size: 10px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.phone-body { padding: 12px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ph-card {
  background: var(--white); border: 1px solid #e2e8f0; border-radius: 10px;
  padding: 12px 14px;
}
.ph-card-label { font-family: var(--font-mono); font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.ph-card-value { font-family: var(--font-mono); font-size: 17px; font-weight: 700; color: var(--navy); }
.ph-card-sub { font-size: 10px; margin-top: 3px; color: var(--muted); }
.ph-ok { color: #16a34a; font-weight: 700; }
.ph-bars { display: flex; align-items: flex-end; gap: 4px; height: 54px; margin-top: 8px; }
.ph-bar { flex: 1; background: var(--teal); opacity: 0.55; border-radius: 2px 2px 0 0; }
.ph-bar.hi { opacity: 1; }
.phone-tabs {
  display: flex; justify-content: space-around;
  border-top: 1px solid #e2e8f0; background: var(--white);
  padding: 9px 4px;
}
.phone-tabs span { font-size: 8.5px; font-weight: 600; color: var(--muted); letter-spacing: 0.2px; }
.phone-tabs span.on { color: var(--teal-dark); }

/* Store badges */
.store-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; flex-direction: column; justify-content: center;
  background: #000; color: var(--white);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 8px;
  padding: 8px 18px; text-decoration: none; line-height: 1.25;
  transition: transform var(--transition), border-color var(--transition);
}
.store-btn:hover { transform: translateY(-1px); border-color: var(--teal); }
.store-btn small { font-size: 9px; opacity: 0.75; letter-spacing: 0.3px; }
.store-btn strong { font-size: 14px; font-weight: 600; }

/* "In development" strip */
.dev-strip {
  background: var(--slate); border: 1px dashed #cbd5e1; border-radius: 10px;
  padding: 28px 32px; margin-top: 56px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.dev-strip .dev-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--terra);
  flex-shrink: 0; animation: pingPulse 2s ease infinite;
}
.dev-strip h4 { font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.dev-strip p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ─── CAPABILITY / BENEFIT (product detail pages) ─────── */
.section-head { margin-bottom: 48px; }
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.cap-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 8px; padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
.cap-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--lm-teal); transform: scaleX(0);
  transform-origin: left; transition: transform 0.35s ease;
}
.cap-card:hover { box-shadow: 0 12px 36px rgba(10,37,64,0.1); transform: translateY(-3px); border-color: transparent; }
.cap-card:hover::before { transform: scaleX(1); }
.cap-icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; background: var(--lm-ice);
}
.cap-icon svg { width: 24px; height: 24px; stroke: var(--lm-teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cap-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 10px; color: var(--lm-navy); }
.cap-card p { font-size: 14px; line-height: 1.7; color: var(--lm-slate); }
@media (max-width: 980px) { .cap-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .cap-grid { grid-template-columns: 1fr; } }

.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.benefit-card {
  background: var(--white); border: 1px solid #e2e8f0; border-radius: 8px;
  padding: 28px; display: flex; gap: 18px; align-items: flex-start;
}
.benefit-num {
  font-family: var(--font-display); font-size: 1.8rem; color: var(--lm-teal-l);
  background: var(--lm-navy); border-radius: 8px; min-width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.benefit-card h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--lm-navy); margin-bottom: 6px; }
.benefit-card p { font-size: 14px; line-height: 1.7; color: var(--lm-slate); }
@media (max-width: 700px) { .benefit-grid { grid-template-columns: 1fr; } }

/* Severity table */
.severity-table {
  width: 100%; border-collapse: collapse; margin-top: 32px;
  background: var(--white); border-radius: 8px; overflow: hidden;
  border: 1px solid #e2e8f0; font-size: 14px;
}
.severity-table th {
  background: var(--lm-navy-2); color: var(--white);
  text-align: left; padding: 14px 18px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 700;
}
.severity-table td { padding: 14px 18px; border-bottom: 1px solid #e2e8f0; color: var(--lm-slate); vertical-align: middle; }
.severity-table tr:last-child td { border-bottom: none; }
.sev-dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; margin-right: 10px; vertical-align: middle; }
.sev-label { font-weight: 600; color: var(--lm-navy); }
@media (max-width: 640px) {
  .severity-table { display: block; overflow-x: auto; }
}

/* CTA band */
.cta-band {
  background: var(--navy); padding: 64px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '3W'; position: absolute; right: -20px; top: -40px;
  font-family: var(--font-display); font-size: 200px; font-weight: 700;
  color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--white); margin-bottom: 14px; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 28px; line-height: 1.7; }
.cta-band .hero-cta { justify-content: center; }

/* Analytics mock panel (Leak Manager Analytics) */
.analytics-mock {
  width: 100%; min-height: 340px;
  background: var(--lm-navy); border-radius: 12px;
  border: 1px solid rgba(94,234,212,0.25);
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
}
.am-title {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--lm-teal-l);
  display: flex; align-items: center; gap: 8px;
}
.am-title::after { content: ''; flex: 1; height: 1px; background: rgba(94,234,212,0.2); }
.am-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.am-kpi { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; padding: 12px; }
.am-kpi-label { font-size: 9px; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 5px; }
.am-kpi-value { font-family: var(--font-mono); font-size: 17px; font-weight: 700; color: var(--white); }
.am-kpi-value small { font-size: 10px; color: var(--lm-teal-l); margin-left: 3px; }
.am-chart {
  flex: 1; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px; padding: 14px;
  display: flex; align-items: flex-end; gap: 6px; min-height: 120px;
}
.am-bar { flex: 1; border-radius: 2px 2px 0 0; }
.am-legend { display: flex; gap: 16px; flex-wrap: wrap; }
.am-legend span { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; color: rgba(255,255,255,0.55); }
.am-legend i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }

/* GIS mockup (kept from previous site, used where no screenshot exists yet) */
.gis-mockup {
  width: 100%; min-height: 340px;
  background: #0d2b3e; border-radius: 12px;
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid rgba(0,180,216,0.2);
}
.gis-toolbar {
  background: var(--navy); padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(0,180,216,0.15);
}
.gis-search {
  flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 6px 12px;
  font-size: 11px; color: rgba(255,255,255,0.5); font-family: var(--font-mono);
}
.gis-btn { background: var(--teal); color: var(--navy); font-size: 10px; font-weight: 700; padding: 6px 12px; border-radius: 3px; }
.gis-body { flex: 1; position: relative; overflow: hidden; min-height: 260px; }
.gis-map-bg { position: absolute; inset: 0; background: #0d2b3e; }
.gis-map-bg::before, .gis-map-bg::after { content: ''; position: absolute; background: rgba(255,255,255,0.06); }
.gis-map-bg::before { top: 40%; left: 0; right: 0; height: 2px; transform: rotate(-3deg); }
.gis-map-bg::after  { top: 0; bottom: 0; left: 38%; width: 2px; transform: rotate(2deg); }
.gis-pin { position: absolute; width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.8); }
.gis-pin::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 1px solid; opacity: 0.4;
  animation: pingPulse 2s ease infinite;
}
@keyframes pingPulse { 0%,100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.6); opacity: 0; } }
.gis-panel {
  position: absolute; right: 12px; top: 12px; bottom: 12px; width: 150px;
  background: rgba(11,36,71,0.9); border: 1px solid rgba(0,180,216,0.2);
  border-radius: 6px; padding: 12px;
}
.gis-panel-title { font-family: var(--font-mono); font-size: 9px; color: var(--teal); letter-spacing: 2px; margin-bottom: 10px; }
.gis-row { margin-bottom: 8px; }
.gis-row-label { font-size: 9px; color: rgba(255,255,255,0.35); letter-spacing: 1px; }
.gis-row-val { font-family: var(--font-mono); font-size: 11px; color: var(--white); }

/* ─── SERVICES PAGE ───────────────────────────────────── */
.services-intro { padding: 72px 0 48px; }
.services-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 56px; }
.service-pillar {
  background: var(--white); border: 1px solid #e5e7eb;
  border-radius: 10px; overflow: hidden;
  transition: box-shadow var(--transition);
}
.service-pillar:hover { box-shadow: 0 12px 36px rgba(11,36,71,0.1); }
.service-pillar-header { padding: 28px 28px 24px; background: var(--navy); position: relative; overflow: hidden; }
.service-pillar-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--teal); }
.service-pillar-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.service-pillar h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 8px; }
.service-pillar-header p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }
.service-pillar-body { padding: 24px 28px; }
.service-item { padding: 12px 0; border-bottom: 1px solid #f3f4f6; }
.service-item:last-child { border-bottom: none; }
.service-item h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.service-item p  { font-size: 13px; color: var(--muted); line-height: 1.6; }
.consultancy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
.consult-card {
  background: var(--slate); border-radius: 8px; padding: 24px;
  border-left: 3px solid var(--teal);
  transition: transform var(--transition), box-shadow var(--transition);
}
.consult-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,36,71,0.08); }
.consult-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.consult-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }
@media (max-width: 768px) {
  .services-two-col { grid-template-columns: 1fr; }
  .consultancy-grid { grid-template-columns: 1fr; }
}

/* ─── ABOUT PAGE ──────────────────────────────────────── */
.about-story { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.about-grid p { font-size: 15px; line-height: 1.85; color: var(--muted); margin-bottom: 16px; }
.about-grid h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy); margin-bottom: 20px; }
.about-timeline { list-style: none; margin-top: 32px; }
.timeline-item { display: flex; gap: 20px; padding-bottom: 28px; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: 18px; top: 36px; bottom: 0; width: 1px; background: #e5e7eb; }
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: var(--font-mono); font-size: 10px;
  color: var(--teal); font-weight: 700;
}
.timeline-content h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.timeline-content p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

.solutions-section { background: var(--slate); padding: 72px 0; }
.solutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; }
.solution-card {
  background: var(--white); border-radius: 8px; padding: 28px;
  border-top: 3px solid var(--teal);
  transition: box-shadow var(--transition);
}
.solution-card.terra { border-top-color: var(--terra); }
.solution-card:hover { box-shadow: 0 10px 30px rgba(11,36,71,0.1); }
.solution-num { font-family: var(--font-mono); font-size: 28px; font-weight: 700; color: var(--teal); margin-bottom: 12px; }
.solution-card.terra .solution-num { color: var(--terra); }
.solution-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.solution-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

.together-section {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #163566 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.together-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,180,216,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.together-inner { position: relative; z-index: 1; }
.together-section h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 16px; }
.together-section h2 em { color: var(--terra); font-style: italic; }
.together-section p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 36px; line-height: 1.75; }
.together-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .solutions-grid { grid-template-columns: 1fr; }
}

/* ─── CONTACT PAGE ────────────────────────────────────── */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 2rem; color: var(--navy); margin-bottom: 16px; }
.contact-info > p { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid #f3f4f6; }
.contact-detail:last-child { border-bottom: none; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--navy); color: var(--teal);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  flex-shrink: 0;
}
.contact-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-value { font-size: 14px; font-weight: 500; color: var(--navy); }
.contact-value a { color: var(--navy); text-decoration: none; }
.contact-value a:hover { color: var(--teal); }
.contact-form {
  background: var(--white); border: 1px solid #e5e7eb;
  border-radius: 12px; padding: 40px;
  box-shadow: 0 4px 24px rgba(11,36,71,0.06);
}
.contact-form h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--navy); letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 7px;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid #e5e7eb; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 14px; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-success {
  display: none; background: #ecfdf5; border: 1px solid #6ee7b7;
  border-radius: 6px; padding: 14px 18px; margin-top: 16px;
  color: #065f46; font-size: 14px; font-weight: 500;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 24px; }
}

/* ─── LOGIN PAGE ──────────────────────────────────────── */
.login-page {
  min-height: calc(100vh - 68px);
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 24px;
  position: relative; overflow: hidden;
}
.login-page::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,180,216,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}
.login-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 420px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 16px; padding: 48px 40px;
  backdrop-filter: blur(20px);
}
.login-logo { margin-bottom: 32px; text-align: center; }
.login-card h2 { font-family: var(--font-display); font-size: 1.7rem; color: var(--white); text-align: center; margin-bottom: 6px; }
.login-sub { font-size: 13px; color: rgba(255,255,255,0.45); text-align: center; margin-bottom: 32px; }
.login-group { margin-bottom: 18px; }
.login-group label {
  display: block; font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.5); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 8px;
}
.login-group input {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); color: var(--white);
  font-family: var(--font-body); font-size: 14px; outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.login-group input:focus { border-color: var(--teal); background: rgba(0,180,216,0.07); }
.login-group input::placeholder { color: rgba(255,255,255,0.25); }
.login-btn {
  width: 100%; padding: 14px;
  background: var(--teal); color: var(--navy);
  border: none; border-radius: var(--radius); cursor: pointer;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  letter-spacing: 0.5px; margin-top: 8px;
  transition: background var(--transition), transform var(--transition);
}
.login-btn:hover { background: #00c8f0; transform: translateY(-1px); }
.login-forgot { display: block; text-align: center; font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 16px; cursor: pointer; text-decoration: none; }
.login-forgot:hover { color: var(--teal); }
.login-error {
  display: none;
  background: rgba(231,111,81,0.12); border: 1px solid rgba(231,111,81,0.3);
  color: var(--terra); font-size: 13px; border-radius: var(--radius);
  padding: 10px 14px; margin-bottom: 18px; text-align: center;
}
.login-error.show { display: block; }

/* ─── SMALL SCREENS ───────────────────────────────────── */
@media (max-width: 480px) {
  .hero { padding: 64px 0 48px; }
  .section { padding: 56px 0; }
  .contact-form, .login-card { padding: 24px; }
}

/* 3-column variant of features grid (WaterWatch tabs) */
.features-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .features-grid.cols-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid.cols-3 { grid-template-columns: 1fr; } }

/* ── Home hero composite: GIS map card + WaterWatch phone ── */
.hero-composite { position: relative; min-height: 460px; }
.hero-map-card {
  position: absolute; top: 0; right: 84px; width: 78%;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  transform: rotate(-2deg);
}
.hero-map-card img { display: block; width: 100%; height: 340px; object-fit: cover; }
.hero-map-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(11,36,71,0.85); color: var(--teal-light, #90E0EF);
  font-family: 'Space Mono', monospace; font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 6px;
  border: 1px solid rgba(0,180,216,0.4);
}
.phone-mock-sm {
  position: absolute; bottom: 0; right: 0;
  width: 218px; transform: rotate(2deg);
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
}
.phone-mock-sm .phone-body { gap: 8px; }
@media (max-width: 980px) {
  .hero-composite { min-height: 0; margin-top: 34px; }
  .hero-map-card { display: none; }
  .phone-mock-sm { display: none; }
}
.phone-mock-sm { width: 202px; }
.phone-mock-sm .ph-card-sub { display: none; }
/* Straighten hero composite per feedback */
.hero-map-card { transform: none; }
.phone-mock-sm { transform: none; }

/* ── Real WaterWatch screenshots in phone frames ── */
.phone-frame {
  border-radius: 26px; overflow: hidden;
  border: 9px solid #10151d; background: #10151d;
  box-shadow: 0 26px 60px rgba(0,0,0,0.5);
  line-height: 0;
}
.phone-frame img { display: block; width: 100%; height: auto; }
/* Home hero: phone over map, straight */
.phone-frame-hero { position: absolute; bottom: 0; right: 0; width: 224px; }
/* Products WaterWatch band */
.phone-frame-band { width: 272px; margin: 0 auto; }
/* WaterWatch page: light front, dark behind */
.phone-pair { position: relative; min-height: 520px; }
.phone-frame-back { position: absolute; top: 0; left: 4%; width: 246px; opacity: 0.95; }
.phone-frame-front { position: absolute; bottom: 0; right: 4%; width: 258px; }
@media (max-width: 980px) {
  .phone-frame-band { width: 240px; }
  .phone-pair { min-height: 0; margin-top: 30px; }
  .phone-frame-back { display: none; }
  .phone-frame-front { position: relative; right: auto; margin: 0 auto; }
}
@media (max-width: 980px) { .phone-frame-hero { position: relative; width: 232px; margin: 0 auto; } }

/* Real screenshot cards (click to open full size) */
.shot-card { display: block; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(11,36,71,0.14); box-shadow: 0 18px 44px rgba(11,36,71,0.16);
  line-height: 0; background: #fff; }
.shot-card img { display: block; width: 100%; height: auto; }
