/* StatusNearMe marketing site — forest / amber theme */
:root {
  --bg: #0c1a14;
  --bg-2: #12261c;
  --surface: #173226;
  --surface-2: #1e3d2e;
  --border: #2d5642;
  --text: #f3f7f4;
  --muted: #a8c0b2;
  --primary: #3d9b6a;
  --primary-ink: #062114;
  --amber: #e8c96a;
  --amber-dim: #c4a035;
  --coral: #e07a5f;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --max: 1080px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  /* photos show through; solid fallback if images fail */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--amber);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #f5e0a0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--amber);
  color: #111;
  padding: 8px 12px;
  z-index: 100;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
}

/* Canada-wide photo background — real photos, seamless scroll crossfade
   Order: Pacific coast → Prairie → NWT → Ontario forest → East coast */
.coast-bg,
.canada-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--bg);
}

.coast-slide {
  position: absolute;
  inset: 0;
  background-color: var(--bg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  /* Opacity driven by JS for seamless scroll blends; light CSS assist */
  transition: opacity 0.15s linear;
  transform: scale(1.06);
  will-change: opacity;
}

.coast-slide.is-active {
  /* z-index kept low so crossfade neighbors stack correctly via inline styles */
}

/* Forest veil: photos stay visible but text/cards remain readable */
.coast-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(12, 26, 20, 0.72) 0%,
      rgba(12, 26, 20, 0.58) 35%,
      rgba(12, 26, 20, 0.62) 70%,
      rgba(12, 26, 20, 0.78) 100%
    ),
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(61, 155, 106, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(232, 201, 106, 0.08), transparent 50%);
}

/* Prefer reduced motion: still photo, no crossfade animation */
@media (prefers-reduced-motion: reduce) {
  .coast-slide {
    transition: none;
    transform: none;
  }
}

/* Legacy name kept empty so old markup does not break */
.page-bg {
  display: none;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(12, 26, 20, 0.78);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--amber);
  box-shadow: 0 0 0 3px rgba(232, 201, 106, 0.15);
}

.brand-text strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.brand-text span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--amber);
}

.nav .btn {
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-ink);
  box-shadow: 0 4px 0 #2a6f4c;
}

.btn-primary:hover {
  color: var(--primary-ink);
  background: #48b07a;
}

.btn-amber {
  background: var(--amber);
  color: #1a1408;
  box-shadow: 0 4px 0 var(--amber-dim);
}

.btn-amber:hover {
  color: #1a1408;
  background: #f0d78a;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn-store {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--border);
  min-width: 200px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 14px 18px;
  text-align: left;
}

.btn-store small {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-store strong {
  font-size: 1rem;
}

.btn-store:hover {
  border-color: var(--primary);
  color: var(--text);
}

.btn-store-soon {
  opacity: 0.85;
  cursor: default;
}

.btn-store-soon:hover {
  border-color: var(--border);
}

/* Free-tier: no large photo assets — soft forest gradient only */
.canada-bg--lite {
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(45, 107, 74, 0.45), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(232, 201, 106, 0.08), transparent 50%),
    linear-gradient(165deg, #0a1610 0%, #0e1f16 40%, #12261c 100%);
}

.btn-store-wom {
  border-color: color-mix(in srgb, var(--amber) 45%, var(--border));
  background: color-mix(in srgb, var(--surface-2) 70%, rgba(232, 201, 106, 0.12));
}

.btn-store-wom:hover,
.btn-store-wom:focus-visible {
  border-color: var(--amber);
  color: var(--text);
  outline: none;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--amber) 35%, transparent);
}

.btn-lg {
  padding: 14px 22px;
  font-size: 1.05rem;
}

/* Hero */
.hero {
  padding: 48px 0 36px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }
}

/* Soft translucent panel so title + lead stay readable on photo bg */
.hero-copy {
  position: relative;
  padding: 22px 24px 20px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(
    160deg,
    rgba(12, 26, 20, 0.52) 0%,
    rgba(18, 38, 28, 0.48) 55%,
    rgba(14, 32, 24, 0.55) 100%
  );
  border: 1px solid color-mix(in srgb, var(--border) 70%, #e8c96a 20%);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 201, 106, 0.14);
  color: var(--amber);
  border: 1px solid rgba(232, 201, 106, 0.4);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.45),
    0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero .lead {
  margin: 0 0 22px;
  color: #e4f0e8;
  font-size: 1.1rem;
  max-width: 36em;
  line-height: 1.55;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-actions--stores {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.store-row--hero {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-row--hero .btn-store {
  min-width: 148px;
  padding: 12px 14px;
}

.hero-note {
  font-size: 0.85rem;
  color: #c8d9ce;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

@media (max-width: 800px) {
  .hero-copy {
    padding: 18px 16px 16px;
  }
}

.hero-card {
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--surface) 90%, transparent) 0%,
    color-mix(in srgb, var(--surface-2) 88%, transparent) 100%
  );
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233d9b6a' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.8;
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

/* Hero uses shared .android-device Pixel mockup (no owl popup) */
.android-device--hero {
  --ad-w: 280px;
}

.android-app--hero {
  min-height: 400px;
  max-height: 460px;
}

.android-search-q--placeholder {
  color: #a8c0b2 !important;
  font-weight: 500 !important;
}

@media (min-width: 900px) {
  .android-device--hero {
    --ad-w: 300px;
  }
}

/* Sections */
section {
  padding: 40px 0;
}

/* Why we built it — story box */
.why-section {
  padding-top: 8px;
  padding-bottom: 12px;
}

.why-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 26px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--surface) 82%, transparent),
    color-mix(in srgb, var(--surface-2) 78%, transparent)
  );
  border: 1px solid color-mix(in srgb, var(--border) 75%, var(--amber) 25%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.why-box-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  padding-top: 2px;
}

.why-box-mascot {
  font-size: 2.6rem;
}

.why-box-copy {
  min-width: 0;
  flex: 1;
}

.why-box-copy p {
  margin: 0;
  color: #d8e8de;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 42em;
}

.why-box-copy em {
  color: var(--amber);
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 560px) {
  .why-box {
    flex-direction: column;
    gap: 12px;
    padding: 18px 16px;
  }
}

.section-title {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
}

.section-sub {
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 40em;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-features {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 960px) {
  .grid-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 800px) {
  .grid-3,
  .grid-features {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  height: 100%;
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
}

.feature-icon-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  background: rgba(61, 155, 106, 0.18);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.feature-card strong {
  color: var(--text);
  font-weight: 700;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Feature spotlight cards (Owl AI, trip gas, …) */
.owl-ai-section {
  position: relative;
  margin: 8px 0 40px;
  padding: 28px 24px;
  background: linear-gradient(145deg, rgba(30, 61, 46, 0.88), rgba(18, 38, 28, 0.9));
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.owl-ai-section > .owl-ai-grid {
  position: relative;
  z-index: 1;
}

/* Trip gas: translucent wavy road behind content */
.trip-gas-section {
  background: linear-gradient(
    155deg,
    rgba(22, 48, 36, 0.96) 0%,
    rgba(14, 32, 24, 0.98) 55%,
    rgba(18, 40, 30, 0.96) 100%
  );
}

.trip-road-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.38;
}

.trip-road-svg {
  position: absolute;
  left: -5%;
  top: 8%;
  width: 110%;
  height: 92%;
  min-height: 280px;
}

.trip-road-asphalt {
  fill: rgba(45, 86, 66, 0.45);
  stroke: rgba(168, 192, 178, 0.18);
  stroke-width: 2;
}

.trip-road-line {
  stroke: rgba(232, 201, 106, 0.55);
  stroke-width: 3.5;
  stroke-dasharray: 18 14;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trip-road-edge {
  stroke: rgba(243, 247, 244, 0.12);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.trip-road-pins circle {
  fill: rgba(232, 201, 106, 0.55);
  stroke: rgba(12, 26, 20, 0.5);
  stroke-width: 2;
}

.owl-ai-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

@media (max-width: 800px) {
  .owl-ai-grid {
    grid-template-columns: 1fr;
  }
}

.owl-ai-joke {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.owl-ai-joke q {
  display: inline;
  color: var(--amber);
  font-weight: 600;
  font-style: normal;
}

.owl-ai-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.owl-ai-list li {
  margin-bottom: 6px;
}

.owl-shot {
  margin: 0;
  text-align: center;
}

.owl-shot-caption {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(232, 201, 106, 0.12);
  border: 1px solid rgba(232, 201, 106, 0.3);
}

/* Pixel-class Android chassis (~412 CSS px app, as in StatusNearMe demo shell) */
.android-device {
  --ad-w: 300px;
  width: var(--ad-w);
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.55));
}

.android-bezel {
  box-sizing: border-box;
  border-radius: 36px;
  border: 3px solid #243f32;
  background: #0a1210;
  box-shadow:
    0 0 0 2px #1a2e24,
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  padding: 10px 8px 8px;
  overflow: hidden;
}

.android-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 22px;
  padding: 0 12px;
  margin: 0 0 2px;
  border-radius: 16px 16px 0 0;
  background: #0e1f16;
  color: #d8ebe0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  user-select: none;
}

.android-status-icons {
  opacity: 0.9;
  letter-spacing: 0.1em;
  font-size: 0.6rem;
}

.android-app {
  background: #0c1a14;
  color: #f3f7f4;
  padding: 8px 10px 12px;
  min-height: 420px;
  max-height: 520px;
  overflow: hidden;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

.android-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.android-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(232, 201, 106, 0.45);
  object-fit: cover;
  flex-shrink: 0;
}

.android-brand-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.android-brand-text strong {
  font-size: 0.88rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.android-brand-text span {
  font-size: 0.58rem;
  color: #a8c0b2;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.android-lang {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  color: #a8c0b2;
  border: 1px solid #2d5642;
  border-radius: 8px;
  padding: 4px 7px;
  background: #173226;
}

.android-controls {
  position: relative;
  background: #173226;
  border: 1px solid #2d5642;
  border-radius: 14px;
  padding: 8px;
  margin-bottom: 10px;
}

.android-search {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #1e3d2e;
  border: 1px solid #2d5642;
  border-radius: 999px;
  padding: 3px 3px 3px 10px;
  min-height: 36px;
  margin-bottom: 8px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.android-search-ico {
  flex-shrink: 0;
  font-size: 0.75rem;
  opacity: 0.75;
}

.android-search-q {
  flex: 1;
  min-width: 0;
  font-size: 0.62rem;
  font-weight: 600;
  color: #e8c96a;
  line-height: 1.25;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.android-search-go {
  flex-shrink: 0;
  background: #3d9b6a;
  color: #062114;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
}

/* In-app owl toast: cream bubble, emoji mascot, dismiss X, optional tail */
/* Collapsed until .is-open — no empty gap before owl appears */
.android-owl-slot {
  display: grid;
  grid-template-rows: 0fr;
  margin: 0;
  transition: grid-template-rows 0.75s cubic-bezier(0.22, 1.15, 0.36, 1),
    margin 0.55s ease;
}

.android-owl-slot.is-open {
  grid-template-rows: 1fr;
  margin: 0 0 10px;
}

.android-owl-slot > .android-owl-toast {
  min-height: 0;
  overflow: hidden;
}

.android-owl-toast {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  padding: 8px 10px 10px;
  background: #fff8e7;
  color: #2a2118;
  border: 2px solid #e8c96a;
  border-radius: 16px 16px 16px 8px;
  box-shadow: 0 5px 0 #c4a035, 0 8px 18px rgba(0, 0, 0, 0.28);
  z-index: 2;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  transform-origin: 18% 0%;
}

.android-owl-slot.is-open .android-owl-toast {
  animation: android-owl-pop 0.9s cubic-bezier(0.22, 1.25, 0.36, 1) 0.2s both;
}

@keyframes android-owl-pop {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.86);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px) scale(1.04);
  }
  72% {
    transform: translateY(2px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.android-owl-emoji {
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.08));
  user-select: none;
  display: inline-block;
}

.android-owl-slot.is-open .android-owl-emoji {
  animation: android-owl-emoji-hop 0.9s cubic-bezier(0.22, 1.25, 0.36, 1) 0.28s both;
}

@keyframes android-owl-emoji-hop {
  0% {
    transform: scale(0.4) rotate(-14deg);
    opacity: 0.35;
  }
  55% {
    transform: scale(1.16) rotate(6deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .android-owl-slot {
    transition: none;
    grid-template-rows: 1fr;
    margin: 0 0 10px;
  }
  .android-owl-slot .android-owl-toast {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  .android-owl-slot .android-owl-emoji {
    animation: none !important;
  }
}

.android-owl-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.android-owl-title {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  color: #2a2118;
  letter-spacing: -0.01em;
}

.android-owl-text {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.35;
  color: #3a3024;
}

.android-owl-text strong {
  font-weight: 800;
  color: #1a1408;
}

.android-owl-sub {
  margin: 4px 0 0;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  color: #1a1408;
  letter-spacing: -0.01em;
}

.android-owl-x {
  flex-shrink: 0;
  color: #5a4a30;
  font-size: 0.85rem;
  line-height: 1;
  padding: 0 2px;
  opacity: 0.75;
}

.android-owl-tail {
  position: absolute;
  left: 52px;
  bottom: -8px;
  width: 12px;
  height: 12px;
  background: #fff8e7;
  border-right: 2px solid #e8c96a;
  border-bottom: 2px solid #e8c96a;
  transform: rotate(45deg);
  pointer-events: none;
}

.android-filters,
.android-actions {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.android-select,
.android-btn {
  flex: 1;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid #2d5642;
  background: #1e3d2e;
  color: #c8e6d4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.android-select--active {
  border-color: #3d9b6a;
  box-shadow: 0 0 0 2px rgba(61, 155, 106, 0.35);
  color: #f3f7f4;
}

.android-btn--split {
  text-align: center;
}

.android-loc-status {
  margin: 0;
  font-size: 0.58rem;
  color: #a8c0b2;
  line-height: 1.3;
}

.android-results-meta {
  margin: 0 0 6px;
  font-size: 0.62rem;
  color: #a8c0b2;
}

.android-results {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.android-card {
  background: #173226;
  border: 1px solid #2d5642;
  border-radius: 12px;
  padding: 8px 10px;
}

.android-card-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
}

.android-card-top strong {
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.android-km {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 700;
  color: #a8c0b2;
}

.android-meta {
  display: block;
  margin-top: 2px;
  font-size: 0.62rem;
  color: #a8c0b2;
  line-height: 1.3;
}

.android-tax {
  display: block;
  margin-top: 2px;
  font-size: 0.62rem;
  font-weight: 700;
  color: #e8c96a;
  line-height: 1.3;
}

.android-home {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  background: #0e1f16;
  border-radius: 0 0 18px 18px;
}

.android-home span {
  width: 88px;
  height: 3px;
  border-radius: 99px;
  background: rgba(240, 250, 244, 0.35);
}

.owl-shot-note {
  margin: 12px 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 32em;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .android-device {
    --ad-w: 320px;
  }
}

/* Trip mock extras: confirm buttons, route strip, map chooser */
.android-app--trip {
  min-height: 480px;
  max-height: 580px;
}

.android-owl-toast--confirm {
  margin-bottom: 8px;
}

.android-owl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.android-owl-yes,
.android-owl-no {
  font-size: 0.58rem;
  font-weight: 800;
  padding: 6px 8px;
  border-radius: 999px;
  line-height: 1.2;
}

.android-owl-yes {
  background: #3d9b6a;
  color: #062114;
}

.android-owl-no {
  background: rgba(42, 33, 24, 0.08);
  color: #3a3024;
  border: 1px solid rgba(42, 33, 24, 0.18);
}

.android-route-strip {
  position: relative;
  margin: 0 0 8px;
  padding: 8px 8px 8px 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid #2d5642;
  border-radius: 12px;
}

.android-route-line {
  position: absolute;
  left: 22px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(232, 201, 106, 0.15),
    rgba(232, 201, 106, 0.75),
    rgba(232, 201, 106, 0.15)
  );
  border-radius: 2px;
}

.android-route-stops {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.android-route-stops li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  font-weight: 700;
  color: #c8e6d4;
  line-height: 1.2;
}

.android-pin {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 800;
  background: #e8c96a;
  color: #1a1408;
  box-shadow: 0 0 0 2px rgba(12, 26, 20, 0.65);
  z-index: 1;
}

.android-route-stops li:first-child .android-pin,
.android-route-stops li:last-child .android-pin {
  background: #3d9b6a;
  color: #f3f7f4;
}

.android-map-chooser {
  margin-top: 8px;
  padding: 8px 10px;
  background: #173226;
  border: 1px solid #2d5642;
  border-radius: 12px;
}

.android-map-title {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #f3f7f4;
}

.android-map-btns {
  display: flex;
  gap: 6px;
}

.android-map-btn {
  flex: 1;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 8px 6px;
  border-radius: 10px;
  border: 1px solid #2d5642;
}

.android-map-btn--gmaps {
  background: #1a73e8;
  border-color: #5b9bf5;
  color: #fff;
}

.android-map-btn--waze {
  background: #33ccff;
  border-color: #7adfff;
  color: #0a2a33;
}

.android-map-hint {
  margin: 6px 0 0;
  font-size: 0.55rem;
  color: #a8c0b2;
  line-height: 1.3;
}

/* Download band */
.download-band {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--surface-2) 90%, transparent),
    color-mix(in srgb, var(--surface) 88%, transparent)
  );
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.download-band h2 {
  margin: 0 0 8px;
}

.download-band > p {
  margin: 0 0 20px;
  color: var(--muted);
}

/* Owl free promise — cartoon speech bubble (tail always aims at owl) */
.owl-free-bubble {
  display: flex;
  flex-direction: row;
  align-items: center; /* mascot + bubble share one vertical center on all widths */
  gap: 2px;
  margin: 0 0 18px;
  max-width: 36em;
  /* Bob the whole group so tail never detaches from the owl */
  animation: owl-free-bob 2.8s ease-in-out infinite;
}

.owl-free-mascot {
  flex-shrink: 0;
  font-size: 2.4rem;
  line-height: 1;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.12));
  user-select: none;
  /* Fixed size box so center = head center across emoji fonts */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  position: relative;
  z-index: 2;
}

@keyframes owl-free-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.owl-free-speech {
  position: relative;
  flex: 1;
  min-width: 0;
  padding: 14px 16px 16px;
  background: #fff8e7;
  color: #2a2118;
  border: 2px solid #e8c96a;
  border-radius: 6px 20px 20px 20px;
  box-shadow: 0 6px 0 #c4a035, 0 10px 24px rgba(0, 0, 0, 0.28);
  z-index: 1;
}

.owl-free-line-strong {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #1a1408;
}

.owl-free-line {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: #3a3024;
}

/* Diamond tail on the left edge, vertically centered = points at owl head */
.owl-free-tail {
  position: absolute;
  left: -7px;
  top: 50%;
  bottom: auto;
  width: 14px;
  height: 14px;
  margin: 0;
  background: #fff8e7;
  border-left: 2px solid #e8c96a;
  border-bottom: 2px solid #e8c96a;
  /* Center the diamond, then rotate so tip faces the owl */
  transform: translateY(-50%) rotate(45deg);
  box-shadow: -2px 2px 0 #c4a035;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 480px) {
  .owl-free-bubble {
    /* Keep row + center alignment — do NOT switch to flex-start (breaks tail aim) */
    align-items: center;
    gap: 0;
  }
  .owl-free-mascot {
    font-size: 2rem;
    width: 2.25rem;
    height: 2.25rem;
  }
  .owl-free-line-strong {
    font-size: 0.98rem;
  }
  .owl-free-tail {
    left: -6px;
    width: 12px;
    height: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .owl-free-bubble {
    animation: none;
  }
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.store-row-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-row .btn-store-wom {
  margin-left: auto;
}

.wom-inline-link {
  color: var(--amber);
  font-style: normal;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wom-inline-link:hover,
.wom-inline-link:focus-visible {
  color: #f5e0a0;
}

.beta-box {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.beta-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 36em;
}

/* Trust / who */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 700px) {
  .who-grid {
    grid-template-columns: 1fr;
  }
}

.panel {
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.panel h3 {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.panel li {
  margin-bottom: 6px;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  border-left: 3px solid var(--amber);
  padding: 10px 14px;
  background: rgba(232, 201, 106, 0.08);
  border-radius: 0 10px 10px 0;
  margin: 28px 0 0;
}

/* Business page */
.biz-hero {
  padding: 40px 0 24px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.biz-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
}

.biz-hero .lead {
  color: var(--muted);
  margin: 0;
  font-size: 1.08rem;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 12px 0 48px;
}

@media (max-width: 900px) {
  .pricing {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.tier:hover {
  transform: translateY(-4px);
  border-color: #3a6b52;
}

.tier-featured {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber), 0 16px 40px rgba(232, 201, 106, 0.12);
}

.tier-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--amber);
  color: #1a1408;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}

.tier-head {
  padding: 28px 24px 18px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border-bottom: 1px solid var(--border);
}

.tier-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.tier-head h2 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.tier-price {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--amber);
}

.tier-price small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.tier-tagline {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.tier-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tier-body h3 {
  margin: 0 0 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.tier-body ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.tier-body li {
  position: relative;
  padding: 8px 0 8px 28px;
  border-bottom: 1px solid rgba(45, 86, 66, 0.45);
  font-size: 0.92rem;
  color: #d5e6db;
}

.tier-body li:last-child {
  border-bottom: none;
}

.tier-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

.tier-body .btn {
  width: 100%;
}

.tier-note {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.biz-plans-intro {
  text-align: center;
  max-width: 520px;
  margin: -8px auto 8px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.biz-cta {
  text-align: center;
  padding: 8px 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.biz-cta .panel {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.biz-cta .panel-scope {
  border-color: color-mix(in srgb, var(--amber, #e8c96a) 35%, var(--border));
}

/* Collapsible info panels on /business */
.biz-details {
  cursor: default;
}

.biz-details > summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  padding: 2px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}

.biz-details > summary::-webkit-details-marker {
  display: none;
}

.biz-details > summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--amber, #e8c96a);
  line-height: 1;
}

.biz-details[open] > summary::after {
  content: "−";
}

.biz-details-body {
  margin-top: 14px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
  text-align: left;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 28px 0 40px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.85rem;
  background: rgba(12, 26, 20, 0.55);
  backdrop-filter: blur(10px);
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--amber);
}

.footer-aob {
  flex: 1 1 100%;
  margin: 4px 0 0;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--amber);
}

.footer-riel {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
}

.footer-riel-link {
  display: inline-block;
  line-height: 0;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.15s ease, filter 0.15s ease;
}

.footer-riel-link:hover,
.footer-riel-link:focus-visible {
  opacity: 1;
  outline: 2px solid var(--amber);
  outline-offset: 4px;
  filter: brightness(1.08);
}

.footer-riel-img {
  width: min(140px, 36vw);
  height: auto;
  display: block;
  opacity: 0.92;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
  user-select: none;
  pointer-events: none;
}

@media (min-width: 720px) {
  .footer-aob {
    flex: 0 1 auto;
    text-align: left;
    margin: 0;
  }
  .footer-riel {
    flex: 0 0 auto;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    order: 0;
  }
  .site-footer .wrap {
    align-items: center;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* —— Formspree contact modal (experimental website) —— */
body.snm-form-open {
  overflow: hidden;
}

#snm-form-root {
  position: relative;
  z-index: 200;
}

.snm-form-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
}

.snm-form-dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(440px, calc(100vw - 24px));
  max-height: min(90vh, 640px);
  overflow: auto;
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: linear-gradient(160deg, #173226, #12261c);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  color: var(--text);
}

.snm-form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.snm-form-header h2 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.snm-form-x {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 1.15rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  line-height: 1;
}

.snm-form-x:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.snm-form-blurb {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.snm-label {
  display: block;
  margin: 10px 0 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.snm-opt {
  font-weight: 500;
  opacity: 0.8;
}

.snm-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
}

.snm-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 35%, transparent);
}

.snm-textarea {
  resize: vertical;
  min-height: 110px;
}

.snm-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.snm-note {
  margin: 12px 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.snm-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 16px;
}

.snm-form-status {
  margin: 0 0 10px;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.snm-form-status--ok {
  color: #8fd4a8;
  font-weight: 600;
}

.snm-form-status--err {
  color: #f0a090;
  font-weight: 600;
}

/* —— /contact page —— */
.contact-hero .contact-jump {
  margin: 16px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-hero .contact-jump a {
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 12px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

.contact-panel {
  max-width: none;
}

.contact-panel h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.contact-blurb {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-blurb-tight {
  margin-bottom: 10px;
}

.contact-blurb strong {
  color: var(--text);
}

.snm-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 520px) {
  .snm-row-2 {
    grid-template-columns: 1fr;
  }
}

.snm-fieldset {
  margin: 14px 0 8px;
  padding: 12px 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.12);
}

.snm-fieldset legend {
  padding: 0 6px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--amber, #e8c96a);
}

.snm-fieldset-payment {
  border-color: color-mix(in srgb, var(--amber, #e8c96a) 40%, var(--border));
}

.payment-placemark {
  margin: 0 0 10px;
  padding: 10px 12px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
  background: rgba(232, 201, 106, 0.1);
  border-radius: 10px;
  border-left: 3px solid var(--amber, #e8c96a);
}

.stripe-mode-banner {
  margin: 0 0 12px;
  padding: 10px 12px;
  font-size: 0.86rem;
  line-height: 1.4;
  border-radius: 10px;
  color: var(--muted);
}

.stripe-mode-banner code {
  color: var(--text);
  font-size: 0.8rem;
}

.stripe-mode-banner--test {
  background: rgba(90, 154, 116, 0.15);
  border-left: 3px solid #5a9a74;
  color: var(--text);
}

.stripe-mode-banner--live {
  background: rgba(232, 100, 80, 0.12);
  border-left: 3px solid #e07060;
  color: var(--text);
}

.stripe-mode-banner--off {
  background: rgba(232, 201, 106, 0.12);
  border-left: 3px solid var(--amber, #e8c96a);
}

.payment-placemark strong {
  color: var(--text);
}

.snm-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.35;
  cursor: pointer;
}

.snm-check input {
  margin-top: 3px;
  flex-shrink: 0;
}

.snm-check span {
  min-width: 0;
}

/* Deep-link anchors (#free / #premium / #corporate) — top of business column, not mid-form */
.contact-hash-anchor {
  display: block;
  height: 0;
  width: 0;
  overflow: hidden;
  scroll-margin-top: 88px;
}

.contact-biz-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.contact-tab {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.contact-tab:hover {
  color: var(--text);
  border-color: #3a6b52;
}

.contact-tab.is-active {
  color: #1a1408;
  background: var(--amber, #e8c96a);
  border-color: var(--amber, #e8c96a);
}

.biz-form-heading {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.biz-form-panel[hidden] {
  display: none !important;
}

.ad-spec-box {
  margin: 16px 0;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.contact-panel .snm-form-actions {
  justify-content: flex-start;
}

.contact-panel select.snm-input {
  appearance: auto;
  cursor: pointer;
}
