/* ===== TOKENS ===== */
:root {
  --background: #EDF2F3;          /* chart paper */
  --secondary:  #DCE7E9;          /* shoal */
  --muted:      #CBD9DC;
  --card:       #F7FAFA;
  --foreground: #12262E;          /* chart ink */
  --deep:       #0D3B4C;          /* deep water */
  --muted-foreground: #5B7480;
  --primary:    #C2186B;          /* chart magenta */
  --primary-foreground: #FFFFFF;
  --primary-hover: #A11359;
  --border: #B9CBCF;
  --radius: 3px;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Public Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* Subtle contour texture on paper sections */
.bg-background {
  background-color: var(--background);
  background-image:
    repeating-linear-gradient(
      112deg,
      color-mix(in srgb, var(--border) 25%, transparent) 0 1px,
      transparent 1px 120px
    );
}

/* ===== LAYOUT ===== */
.container { max-width: 1152px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 768px; }
.container-md { max-width: 960px; }
.container-xs { max-width: 640px; }
.text-center { text-align: center; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }

/* ===== SECTION ===== */
.section { padding: 6rem 0; position: relative; }
.bg-secondary { background: var(--secondary); }
.bg-primary { background: var(--primary); color: var(--primary-foreground); }
.bg-dark { background: var(--deep); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 90%;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--foreground);
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  margin-top: 0.75rem;
}
.section-title-md {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  margin-top: 0.75rem;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--foreground);
  text-wrap: balance;
  margin-top: 1.5rem;
}
.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.section-subtitle {
  margin-top: 1.5rem;
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.text-muted { color: var(--muted-foreground); margin-top: 1.25rem; font-size: 1rem; line-height: 1.65; max-width: 62ch; }
.text-light { color: var(--background); }
.text-light-muted { color: color-mix(in srgb, var(--background) 65%, transparent); margin-top: 1.25rem; font-size: 1rem; line-height: 1.65; max-width: 62ch; }
.text-dark { color: var(--foreground); }
.text-dark-muted { color: color-mix(in srgb, var(--primary-foreground) 85%, transparent); margin-top: 1.25rem; font-size: 1.0625rem; max-width: 62ch; margin-left: auto; margin-right: auto; line-height: 1.65; }

/* Highlight — magenta 1px underline */
.highlight { position: relative; display: inline-block; }
.highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -0.15em;
  height: 1px;
  background: var(--primary);
}

/* ===== LEGEND KEY (was BADGE) ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0;
  border-radius: 0;
  background: transparent !important;
  border: none;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-foreground);
  margin-bottom: 0;
}
.badge::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--primary);
  flex-shrink: 0;
}
.badge-light,
.badge-accent,
.badge-accent-dark { color: var(--muted-foreground); }
.badge-accent-dark::before,
.badge-hero::before,
.badge-hero-dark::before { background: var(--background); }
.badge-hero, .badge-hero-dark {
  color: color-mix(in srgb, var(--background) 75%, transparent);
}
.badge-hero { color: var(--muted-foreground); }
.badge-hero::before { background: var(--primary); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-lg { padding: 0.85rem 1.75rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
.btn-dark { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }
.btn-dark:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
.btn-ghost-hero {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--foreground);
}
.btn-ghost-hero:hover { background: color-mix(in srgb, var(--foreground) 8%, transparent); }
.btn-icon { width: 1rem; height: 1rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.25s, border-color 0.25s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: color-mix(in srgb, var(--background) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--foreground);
}
.logo::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--primary);
  margin-right: 0.5rem;
  transform: translateY(-1px);
}
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a:not(.nav-cta) {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 75%, transparent);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:not(.nav-cta):hover {
  color: var(--foreground);
  background: var(--secondary);
}
.nav-cta { margin-left: 0.75rem; }
.mobile-toggle {
  display: none;
  padding: 0.5rem;
  border-radius: var(--radius);
  color: var(--foreground);
}
.mobile-toggle .icon { width: 1.25rem; height: 1.25rem; }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
  background: color-mix(in srgb, var(--background) 96%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 75%, transparent);
}
.mobile-menu a:hover { color: var(--foreground); background: var(--secondary); }
.mobile-menu a.btn-dark { color: var(--primary-foreground); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--background);
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--border) 35%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--border) 35%, transparent) 1px, transparent 1px);
  background-size: 96px 96px, 96px 96px;
}
.hero-map { position: absolute; inset: 0; background: url("assets/usa-outline.svg") center/contain no-repeat; opacity: 0.30; pointer-events: none; }
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 780px;
  padding: 8rem 1.5rem 6rem;
}
.hero-coords {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--muted-foreground);
  text-transform: uppercase;
  margin-top: 1.5rem;
}
.pulse-dot { display: none; }

/* Radius dial */
.radius-dial-wrap {
  position: relative;
  margin: 3rem auto 0;
  width: min(520px, 90vw);
  aspect-ratio: 1 / 1;
}
.radius-dial { position: absolute; inset: 0; width: 100%; height: 100%; display: block; overflow: visible; }
.radius-dial .ring { fill: none; stroke: var(--primary); stroke-width: 1; }
.radius-dial .ring-1 { stroke-opacity: 1;    }
.radius-dial .ring-2 { stroke-opacity: 0.60; }
.radius-dial .ring-3 { stroke-opacity: 0.35; }
.radius-dial .ring-4 { stroke-opacity: 0.18; }
.radius-dial .center-dot { fill: var(--primary); }
.radius-dial .rlabel {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  fill: var(--muted-foreground);
  text-transform: uppercase;
}
.radius-dial .rtick { stroke: var(--primary); stroke-width: 1; }

/* Radar sweep overlay */
.radar-sweep {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    color-mix(in srgb, var(--primary) 26%, transparent) 0deg,
    color-mix(in srgb, var(--primary) 6%, transparent) 22deg,
    transparent 48deg, transparent 360deg);
  -webkit-mask-image: radial-gradient(circle, #000 0 98%, transparent 100%);
  mask-image: radial-gradient(circle, #000 0 98%, transparent 100%);
  pointer-events: none;
  animation: radar-sweep 5s linear infinite;
  will-change: transform;
}
@keyframes radar-sweep { to { transform: rotate(360deg); } }
@keyframes pin-flash {
  0%, 3%   { opacity: 1;  filter: drop-shadow(0 0 5px var(--primary)); }
  20%,100% { opacity: 0.3; filter: none; }
}
.radar-pin { fill: var(--primary); opacity: 0.3; animation: pin-flash 5s linear infinite; }

/* Hero animation: draw rings outward */
@keyframes ring-draw {
  from { stroke-dasharray: 0 999; }
  to   { stroke-dasharray: 999 0; }
}
@keyframes fade-in-simple {
  from { opacity: 0; } to { opacity: 1; }
}
.radius-dial .ring        { stroke-dasharray: 999 0; animation: ring-draw 220ms ease-out both; }
.radius-dial .ring-1      { animation-delay: 0ms; }
.radius-dial .ring-2      { animation-delay: 220ms; }
.radius-dial .ring-3      { animation-delay: 440ms; }
.radius-dial .ring-4      { animation-delay: 660ms; }
.radius-dial .rlabel,
.radius-dial .rtick       { opacity: 0; animation: fade-in-simple 200ms ease-out forwards; }
.radius-dial .rlabel-1, .radius-dial .rtick-1 { animation-delay: 220ms; }
.radius-dial .rlabel-2, .radius-dial .rtick-2 { animation-delay: 440ms; }
.radius-dial .rlabel-3, .radius-dial .rtick-3 { animation-delay: 660ms; }
.radius-dial .rlabel-4, .radius-dial .rtick-4 { animation-delay: 880ms; }

@media (prefers-reduced-motion: reduce) {
  .radius-dial *, .radius-dial .ring, .radius-dial .rlabel, .radius-dial .rtick {
    animation: none !important;
    opacity: 1 !important;
    stroke-dasharray: none !important;
  }
  .radar-sweep { display: none !important; }
  .radar-pin { animation: none !important; opacity: 1 !important; filter: none !important; }
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Graticule divider (repurposed from .hero-wave) */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.hero-wave svg { display: none; }
.hero-wave::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 6px;
  background-image: linear-gradient(to right, var(--primary) 0 1px, transparent 1px 80px);
  background-repeat: repeat-x;
  background-size: 80px 6px;
  background-position: 0 bottom;
}

/* ===== SPLIT LAYOUT ===== */
.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.split-layout.items-center { align-items: center; }
@media (min-width: 769px) {
  .split-layout { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
@media (min-width: 640px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: 1fr 1fr 1fr; } }
.feature-card {
  background: var(--card);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}
.feature-card:hover {
  border-color: var(--primary);
  z-index: 1;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0.75rem 0 0.5rem;
}
.feature-card p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.feature-icon {
  width: 28px; height: 28px;
  background: transparent !important;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  width: 100%;
  justify-content: flex-start;
}
.feature-icon .icon { width: 28px; height: 28px; color: var(--primary) !important; stroke-width: 1.5; }

/* ===== MAP VISUAL ===== */
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.tag {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  font-weight: 500;
  text-transform: uppercase;
}
.split-visual { position: relative; }
.map-image-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
}
.map-image { width: 100%; height: auto; }
.radius-badge {
  position: absolute;
  bottom: -1px; left: -1px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.radius-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  align-self: center;
}
.radius-value {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.05em;
}
.radius-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* ===== SAFETY (light-on-shoal) ===== */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
@media (max-width: 640px) { .safety-grid { grid-template-columns: 1fr; } }
.safety-card {
  background: transparent;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 1.25rem 1.25rem 1.5rem;
}
.safety-card h4 {
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.safety-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}
.safety-icon {
  width: 28px; height: 28px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.safety-icon .icon { width: 24px; height: 24px; color: var(--primary); stroke-width: 1.5; }

/* Footer tagline on brand mark */
.footer-tagline {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: color-mix(in srgb, var(--background) 60%, transparent);
}

/* ===== TESTIMONIAL ===== */
.quote-mark { display: none; }
.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--foreground);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid var(--primary);
  text-transform: none;
}
.testimonial-attribution {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.testimonial-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--muted);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
}
.testimonial-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

/* ===== PHILOSOPHY / STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid color-mix(in srgb, var(--primary-foreground) 25%, transparent);
  border-left: 1px solid color-mix(in srgb, var(--primary-foreground) 25%, transparent);
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: 1fr 1fr 1fr; } }
.stat-card {
  background: transparent;
  border-right: 1px solid color-mix(in srgb, var(--primary-foreground) 25%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--primary-foreground) 25%, transparent);
  border-radius: 0;
  padding: 1.5rem 1.25rem;
  text-align: left;
}
.stat-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary-foreground);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--primary-foreground) 75%, transparent);
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq-item {
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  transition: background 0.15s;
}
.faq-item.open { background: var(--card); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  color: var(--foreground);
  letter-spacing: -0.01em;
}
.faq-chevron {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.2s;
}
.faq-item.open .faq-chevron { transform: rotate(90deg); }
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-content { max-height: 240px; }
.faq-content p {
  padding: 0 1rem 1.25rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 62ch;
}

/* ===== FINAL CTA ===== */
.cta-mockup {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
}
.cta-mockup img { width: 100%; height: 100%; object-fit: cover; }
.text-center-mobile { text-align: left; }
@media (max-width: 768px) { .text-center-mobile { text-align: center; } }

/* ===== FOOTER ===== */
.footer {
  background: var(--deep);
  color: var(--background);
  padding: 4rem 0 3rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 769px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: color-mix(in srgb, var(--background) 60%, transparent);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--background) 80%, transparent);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--background) 15%, transparent);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 769px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--background);
}
.footer-logo::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--primary);
  margin-right: 0.5rem;
  transform: translateY(-1px);
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--background) 50%, transparent);
}
.heart-icon { display: none; }

/* ===== UTILITY COLORS ===== */
.text-dark .icon, .icon.text-dark { color: var(--primary); }
.icon.text-light { color: var(--primary); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* Photo pending placeholder */
.photo-pending {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  aspect-ratio: 4 / 5;
  background: var(--muted);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
.testimonial-image.photo-pending { aspect-ratio: auto; height: 100%; min-height: 320px; }
.about-image.photo-pending { aspect-ratio: 3 / 2; }

/* SVG device frame + inline SVG map wrappers */
.svg-device { background: transparent; border: 0; border-radius: 0; overflow: visible; }
.svg-device svg { width: 100%; height: auto; display: block; }
.map-image-wrapper svg.map-image { width: 100%; height: auto; display: block; border-radius: var(--radius); }
