/* PhoneTag marketing — v2 (pixel match to PT Website Design v2.pdf). */
:root {
  --ink: #11151c;
  --ink-2: #39414e;
  --muted: #717a86;
  --cyan: #08a8e3;
  --cyan-deep: #0a93c6;
  --bg: #ffffff;
  --bg-alt: #f1f3f5;
  --card: #ffffff;
  --nav: #15191f;
  --border: rgba(17, 21, 28, 0.09);
  --shadow: 0 16px 40px -18px rgba(17, 21, 28, 0.22);
  --shadow-sm: 0 4px 16px -8px rgba(17, 21, 28, 0.16);
  --radius: 22px;
  --maxw: 1140px;
}

/* Dark theme — flips the palette; the cyan accent + dark nav pill stay. */
html.dark {
  --ink: #eef2f7;
  --ink-2: #c0c8d4;
  --muted: #8b94a3;
  --bg: #0a0e14;
  --bg-alt: #161d27;
  --card: #1b232e;
  --border: rgba(255, 255, 255, 0.09);
  --shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.6);
  --shadow-sm: 0 4px 16px -8px rgba(0, 0, 0, 0.5);
}
/* Black line-art graphics need inverting to read on dark surfaces. */
html.dark .s2s,
html.dark .mini-head img,
html.dark .footer img { filter: invert(1) brightness(1.6); }
html.dark .footer-social img { filter: brightness(0) invert(1); opacity: 0.65; }
html.dark .toggle { background: rgba(255, 255, 255, 0.06); }
html.dark .toggle-opt.active { background: var(--cyan); }
html.dark .pill { color: #fff; }
html.dark .btn-soft { background: rgba(255, 255, 255, 0.1); color: var(--ink); }
html.dark .btn-soft:hover { background: rgba(255, 255, 255, 0.16); }
html.dark .faq-tag { background: rgba(255, 255, 255, 0.06); }
/* Safari repaints rule-based (selector) theme changes reliably, but can SKIP a
   repaint when only a :root CSS variable changes. So set the key surfaces with
   concrete values gated on `html.dark` (not just via var) — this forces Safari
   to repaint them the instant the theme class flips, no refresh needed. */
html.dark body { background: #0a0e14; }
html.dark .step,
html.dark .feature,
html.dark .chip,
html.dark .mini,
html.dark .product,
html.dark .product-foot,
html.dark .plan,
html.dark .faq-list details { background: #1b232e; }
html.dark .footer { background: #161d27; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  position: relative;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
/* Subtle cyan radial glow on white — matches dev.phonetagapp.com. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(680px 520px at 50% -140px, rgba(5, 170, 228, 0.16), transparent 70%),
    radial-gradient(620px 600px at 92% 8%, rgba(140, 116, 222, 0.12), transparent 72%),
    radial-gradient(560px 560px at 6% 52%, rgba(5, 170, 228, 0.08), transparent 72%),
    radial-gradient(720px 640px at 18% 96%, rgba(140, 116, 222, 0.08), transparent 74%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.cyan { color: var(--cyan); }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.narrow { max-width: 600px; margin-left: auto; margin-right: auto; }
.sub-tight { margin-top: 10px; }

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.025em; font-weight: 800; }
h1, h2, h3 { font-weight: 600; }
h1 { font-size: clamp(34px, 5.4vw, 58px); line-height: 1.04; }
h2 { font-size: clamp(30px, 4.2vw, 46px); line-height: 1.08; }
h2.big { font-size: clamp(36px, 5.6vw, 64px); }
h3 { font-size: 19px; }
.eyebrow { font-size: clamp(18px, 2vw, 23px); font-weight: 500; color: var(--ink-2); margin: 0 0 10px; }
.eyebrow.cyan { color: var(--cyan); letter-spacing: 0.14em; text-transform: uppercase; font-size: clamp(15px, 1.5vw, 18px); font-weight: 700; margin-bottom: 12px; }
.lead { font-size: clamp(17px, 1.7vw, 20px); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; border-radius: 999px;
  padding: 11px 22px; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.06s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn.block { display: flex; width: 100%; }
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-primary { background: var(--cyan); color: #fff; }
.btn-primary:hover { background: var(--cyan-deep); }
.btn-soft { background: #e9edf1; color: var(--ink); }
.btn-soft:hover { background: #dfe4ea; }
.btn-dark { background: #11151c; color: #fff; }
.btn-dark:hover { background: #000; }

/* ── Floating dark pill nav (over the hero card) ── */
.nav-shell {
  position: sticky; top: 0; z-index: 60;
  padding: calc(14px + env(safe-area-inset-top, 0px)) 18px 14px;
  /* Safari 26 tints the status bar from the top sticky element's
     background-color; per-theme so the seam matches the page. */
  background-color: #e4eefc;
}
html.dark .nav-shell { background-color: #0b0e14; }
.nav {
  max-width: none; margin: 0 auto;
  background: linear-gradient(120deg, rgba(16, 137, 190, 0.66) 0%, rgba(132, 108, 212, 0.7) 100%); color: #fff;
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: 0 14px 34px -14px rgba(120, 96, 200, 0.45);
}
.nav-row { display: flex; align-items: center; gap: 22px; padding: 9px 14px 9px 24px; }
.nav .brand img { height: 30px; width: auto; display: block; }
.nav-links { display: flex; gap: 26px; margin-left: auto; line-height: 30px; }
.nav-links a { color: rgba(255, 255, 255, 0.82); font-weight: 600; font-size: 14.5px; }
.nav-links a:hover { color: #fff; }
.nav-cta { padding: 9px 20px; font-size: 14px; }
.theme-toggle { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.18); background: transparent; color: rgba(255, 255, 255, 0.85); cursor: pointer; flex: none; }
.theme-toggle:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
/* Show the icon for the current mode (set as data-theme-mode on <html>). */
.theme-toggle svg { display: none; }
html[data-theme-mode="light"] .theme-toggle .ic-light { display: block; }
html[data-theme-mode="dark"] .theme-toggle .ic-dark { display: block; }
html[data-theme-mode="system"] .theme-toggle .ic-system { display: block; }
/* Fallback before the mode attr is set: show the sun. */
html:not([data-theme-mode]) .theme-toggle .ic-light { display: block; }
.theme-toggle-m { display: none; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; color: #fff; padding: 6px; cursor: pointer; line-height: 0; }
.nav-toggle .ex { display: none; }
.nav.open .nav-toggle .ham { display: none; }
.nav.open .nav-toggle .ex { display: block; }
.nav-drawer { display: none; }

/* ── Hero (inset rounded card; nav floats over the top) ── */
.hero { position: relative; padding: 6px 18px 0; }
/* Brand gradient base — shows through if the video/poster is slow or fails to
   load, so the hero is always an intentional cyan→lavender (never a gray box). */
.hero-card { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; border-radius: 30px; color: #fff; background: linear-gradient(120deg, #0c5e86 0%, #1089be 38%, #5566c4 72%, #846cd4 100%); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: transparent; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(96deg, rgba(9, 13, 20, 0.9) 0%, rgba(9, 13, 20, 0.66) 42%, rgba(9, 13, 20, 0.32) 78%, rgba(9, 13, 20, 0.2) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 60px 24px; }
.hero h1 { color: #fff; max-width: 600px; }
.hero-sub { margin-top: 22px; max-width: 440px; font-size: 16px; line-height: 1.55; color: rgba(255, 255, 255, 0.82); }
.hero-trust { position: absolute; z-index: 3; bottom: 30px; right: 40px; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; font-size: 13.5px; font-weight: 600; color: rgba(255, 255, 255, 0.92); }
.hero-social { display: flex; gap: 16px; }
.hero-social img { height: 28px; width: 28px; object-fit: contain; opacity: 0.95; }
.hero-social a:hover img { opacity: 1; }

/* ── Sections ── */
.section { padding: clamp(74px, 9vw, 116px) 0; background: transparent; }
.section.alt { background: rgba(233, 238, 244, 0.5); }
html.dark .section.alt { background: #161d27; }
/* Collapse the doubled whitespace where two adjacent sections share a background
   (a continuous colour band, or a run of plain sections) so it doesn't read as
   an oversized void. Boundaries where the background changes keep full padding —
   the colour edge there is the divider. */
.section:not(.alt) + .section:not(.alt),
.section.alt + .section.alt { padding-top: 0; }
section[id] { scroll-margin-top: 96px; }
.center h2 + .lead, .center .eyebrow + h2 { margin-top: 12px; }
.steps, .feature-grid, .mini-grid, .products, .plans { margin-top: 48px; }

/* ── How it works ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 22px 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.step-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.step-head h3 { font-size: 17px; max-width: 70%; }
.step-num { font-size: 34px; font-weight: 800; line-height: 0.9; color: var(--ink); letter-spacing: -0.04em; }
.step p { color: var(--muted); font-size: 13.5px; margin: 8px 0 16px; flex: 1; }
.step img { border-radius: 12px; aspect-ratio: 16 / 11; object-fit: cover; width: 100%; }

/* ── Video / Voice / Text ── */
.vvt-section .wrap { position: relative; }
.vvt-product { position: absolute; top: -6px; right: 8px; height: 250px; width: auto; filter: drop-shadow(0 4px 4px rgba(17, 21, 28, 0.42)); z-index: 2; }
html.dark .vvt-product { filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.6)); }
.vvt-head h2 { margin-bottom: 16px; }
.vvt-lead { margin: 0 auto 26px; max-width: 660px; font-size: clamp(22px, 2.5vw, 29px); font-weight: 800; line-height: 1.25; letter-spacing: -0.02em; }
.vvt-chips { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin: 44px 0 26px; }
.chip { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 16px 16px; font-size: 13px; color: var(--ink-2); box-shadow: var(--shadow-sm); line-height: 1.4; }
.vvt-note { max-width: 720px; margin: 0 auto; font-size: 16px; }

/* ── Why different ── */
.pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 24px 0 0; }
.pill { background: var(--cyan); color: #fff; font-weight: 600; font-size: 14px; padding: 6px 18px; border-radius: 999px; }
.s2s { display: block; width: min(660px, 80%); height: auto; margin: 50px auto 0; }
.private-title { font-weight: 800; font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; margin: 22px 0 0; display: flex; align-items: center; justify-content: center; gap: 8px; }
.private-title svg { width: 15px; height: 15px; }
.privacy-row { display: flex; justify-content: center; gap: 52px; margin: 22px auto 0; flex-wrap: wrap; }
.privacy-item { display: flex; flex-direction: column; align-items: center; }
.privacy-ic { position: relative; width: 46px; height: 46px; border: 2px solid var(--ink); border-radius: 999px; display: flex; align-items: center; justify-content: center; color: var(--ink); margin-bottom: 10px; }
.privacy-ic > svg { width: 22px; height: 22px; }
.privacy-x { position: absolute; right: -5px; bottom: -3px; width: 19px; height: 19px; background: #6b7280; border: 2px solid var(--bg); border-radius: 999px; display: flex; align-items: center; justify-content: center; color: #fff; }
.privacy-x svg { width: 10px; height: 10px; }
.privacy-item strong { font-size: 15px; color: var(--ink); }
.privacy-item .ns { font-size: 13px; color: var(--muted); margin-top: 1px; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.feature img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.feature-body { padding: 22px 26px 26px; }
.feature-body h3 { margin-bottom: 8px; line-height: 1.25; }
.feature-body h3 em { font-style: normal; }
.feature-body p { color: var(--muted); font-size: 15px; margin: 0; }

/* ── Locations carousel ── */
.carousel { margin-top: 44px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 0 16px; -webkit-overflow-scrolling: touch; scroll-padding-inline: 50%; }
.carousel::-webkit-scrollbar { display: none; }
.carousel { scrollbar-width: none; }
.carousel-track { display: flex; align-items: center; gap: 0; padding-inline: max(16px, calc(50vw - 372px)); width: max-content; }
.carousel figure { position: relative; margin: 0 -12px; width: 760px; max-width: 80vw; scroll-snap-align: center; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transform: scale(0.9); opacity: 0.6; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease; }
.carousel figure.is-center { transform: scale(1); opacity: 1; z-index: 2; }
.carousel img { width: 100%; height: 420px; object-fit: cover; }
.carousel figcaption { position: absolute; left: 24px; top: 22px; color: #fff; font-weight: 700; font-size: 24px; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55); }
/* Availability chips sit on the image, bottom-right corner. */
.carousel figure .soon-chip { position: absolute; right: 16px; bottom: 14px; z-index: 2; vertical-align: 0; }

/* ── Just scan to connect mini grid ── */
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.mini { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.mini-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.mini-head h4 { font-size: 16px; }
.mini-head img { height: 24px; width: 24px; object-fit: contain; flex: none; }
.mini p { color: var(--muted); font-size: 13.5px; margin: 0; line-height: 1.5; }

/* ── Products ── */
.products { display: flex; justify-content: center; gap: 26px; max-width: 760px; margin-left: auto; margin-right: auto; }
/* Photo-card: the in-situ image is the full card background; the foot is an
   overlay anchored to the bottom edge with a dark gradient for legibility. */
.products .product {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 988 / 1366; /* matches door-install.png so cover shows it uncropped */
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--card);
}
.products .product .product-img {
  position: absolute;
  inset: 0;
  height: 100%;
  margin: 0;
  display: block;
}
.products .product .product-img img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  filter: none;
  display: block;
}
.products .product .product-head,
.products .product .product-foot {
  position: absolute;
  left: 0;
  right: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
.products .product .product-head {
  top: 0;
  padding: 22px 22px 46px;
  background: linear-gradient(
    to bottom,
    rgba(11, 15, 22, 0.62) 0%,
    rgba(11, 15, 22, 0.42) 52%,
    rgba(11, 15, 22, 0) 100%
  );
}
.products .product .product-foot {
  bottom: 0;
  padding: 46px 22px 22px;
  background: linear-gradient(
    to top,
    rgba(11, 15, 22, 0.62) 0%,
    rgba(11, 15, 22, 0.42) 52%,
    rgba(11, 15, 22, 0) 100%
  );
}
.products .product .product-head h3 { font-size: 19px; color: #fff; }
.products .product .product-head .muted { color: rgba(255, 255, 255, 0.82); }
.products .product .product-head .small { margin: 0; }

/* ── Pricing ── */
.toggle { display: inline-flex; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 5px; margin: 28px 0 0; box-shadow: var(--shadow-sm); }
.toggle-opt { border: none; background: transparent; font-weight: 700; font-size: 14px; color: var(--muted); padding: 9px 24px; border-radius: 999px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.toggle-opt.active { background: var(--cyan); color: #fff; }
.toggle-opt .save { font-size: 11px; font-weight: 600; opacity: 0.9; }
.toggle-opt:not(.active) .save { display: none; }
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 360px)); justify-content: center; gap: 22px; max-width: 820px; margin: 28px auto 0; text-align: left; }
.plan { position: relative; display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 32px; box-shadow: var(--shadow-sm); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plan.featured {
  border: 1.5px solid rgba(8, 168, 227, 0.55);
  background: linear-gradient(180deg, rgba(8, 168, 227, 0.06) 0%, rgba(144, 138, 234, 0.05) 100%);
  box-shadow: 0 26px 54px -26px rgba(8, 168, 227, 0.5);
}
html.dark .plan.featured { background: linear-gradient(180deg, rgba(8, 168, 227, 0.14), rgba(144, 138, 234, 0.10)); }
.badge { position: absolute; top: -11px; right: 26px; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; padding: 4px 12px; border-radius: 999px; }
.plan-head { display: flex; align-items: center; gap: 14px; }
.plan-ic { width: 46px; height: 46px; flex: none; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: rgba(8, 168, 227, 0.10); color: var(--cyan); }
.plan-ic svg { width: 24px; height: 24px; }
.plan h3 { font-size: 21px; line-height: 1.15; }
.plan-sub { color: var(--muted); font-size: 13px; margin: 3px 0 0; line-height: 1.35; }
.price { margin: 24px 0 4px; display: flex; align-items: baseline; gap: 4px; }
.price .amount { font-size: 50px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.price .per { color: var(--muted); font-weight: 600; font-size: 15px; }
.price-note { font-size: 13.5px; font-weight: 600; color: var(--ink-2); margin: 0; }
.features { list-style: none; margin: 22px 0 26px; padding: 22px 0 0; border-top: 1px solid var(--border); flex: 1; }
.features li { position: relative; padding: 9px 0 9px 30px; font-size: 14.5px; }
.plan-cta { margin-top: auto; }
.features li::before { content: ''; position: absolute; left: 0; top: 9px; width: 20px; height: 20px; border-radius: 999px; background-position: center; background-repeat: no-repeat; background-size: 20px; }
.dark-checks li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%2311151c'/%3E%3Cpath d='M7 12.5l3 3 7-7' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.cyan-checks li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%2308a8e3'/%3E%3Cpath d='M7 12.5l3 3 7-7' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.plan-foot { font-size: 11.5px; margin: 22px 0 0; }

/* ── FAQ ── */
.faq-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.faq-tag { display: inline-block; background: #fff; border: 1px solid var(--border); border-radius: 8px; font-size: 12px; font-weight: 600; color: var(--muted); padding: 3px 10px; }
.faq-photos { position: relative; width: 220px; height: 200px; margin: 22px 0 24px; }
.faq-photo { position: absolute; width: 156px; height: 156px; object-fit: cover; border: 7px solid #fff; border-radius: 8px; box-shadow: 0 14px 28px -8px rgba(17, 21, 28, 0.28); }
.faq-photo.back { left: 52px; top: 4px; transform: rotate(8deg); }
.faq-photo.front { left: 0; top: 26px; transform: rotate(-7deg); }
.faq-head h2 { margin-bottom: 6px; }
.faq-head .btn { margin-top: 18px; }
.faq-list details { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 2px 22px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.faq-list summary { list-style: none; cursor: pointer; font-weight: 600; font-size: 16px; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--ink); line-height: 1; }
.faq-list details[open] summary::after { content: '–'; }
.faq-list details p { color: var(--muted); font-size: 15px; margin: 0 0 18px; }

/* ── Footer ── */
.footer { background: var(--bg-alt); padding: 28px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer img { height: 20px; width: auto; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--muted); font-size: 14px; font-weight: 500; }
.footer-links a:hover { color: var(--ink); }
.footer-social { display: flex; gap: 16px; }
.footer-social img { height: 24px; width: 24px; object-fit: contain; filter: brightness(0); opacity: 0.5; }
.footer-social a:hover img { opacity: 0.8; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-shell { padding: calc(12px + env(safe-area-inset-top, 0px)) 18px 12px; }
  .nav { max-width: none; border-radius: 22px; }
  .nav .brand img { height: 27px; }
  .nav-links, .nav-cta { display: none; }
  .theme-toggle-m { display: inline-flex; margin-left: auto; margin-right: 8px; }
  .nav-toggle { display: inline-flex; margin-left: 0; }
  .nav.open .nav-drawer {
    display: flex; flex-direction: column; gap: 2px;
    padding: 6px 12px 14px; border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-drawer a:not(.btn) { color: rgba(255, 255, 255, 0.88); font-weight: 600; font-size: 15px; padding: 11px 12px; border-radius: 12px; }
  .nav-drawer a:not(.btn):active { background: rgba(255, 255, 255, 0.08); }
  .nav-drawer .btn { margin-top: 8px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .vvt-product { position: static; height: 200px; margin: 0 auto 24px; }
  .vvt-chips { grid-template-columns: 1fr 1fr; }
  .feature-grid, .products, .plans, .faq-wrap { grid-template-columns: 1fr; }
  .dual, .people-showcase { grid-template-columns: 1fr; gap: 26px; }
  .people-showcase { max-width: 460px; }
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .closing { grid-template-columns: 1fr; padding: 34px 28px; text-align: center; }
  .closing p { margin-left: auto; margin-right: auto; }
  .closing-img { display: none; }
  .vvt-tags { gap: 36px; }
  .vvt-tags img { height: 200px; }
  .toggle { margin-top: 22px; }
  .plans { margin-top: 18px; }
  .mini-grid { grid-template-columns: 1fr 1fr; }
  .carousel-track { padding-inline: 11vw; }
  .carousel figure { width: 78vw; margin: 0; }
  .carousel img { height: 300px; }
  .carousel .carousel-slot { height: 300px; }
  .hero-card { min-height: 500px; }
  .hero-inner { padding: 48px 28px; }
  .hero-sub { max-width: 100%; }
  .hero-trust { bottom: 22px; right: 24px; }
  .section { padding: 60px 0; }
}
@media (max-width: 600px) {
  .steps, .vvt-chips, .mini-grid { grid-template-columns: 1fr; }
  /* Top-align the hero content and inset it below the floating nav pill, so the
     the toolbar now sits ABOVE the hero in flow, so no overlay compensation. */
  .hero-card { min-height: 480px; align-items: flex-start; }
  .hero-inner { padding-top: 44px; padding-bottom: 40px; }
  .hero h1 { font-size: 32px; }
  /* Hide the corner trust/social line on phones — it crowds the CTA, and the
     trust strip below + footer socials already cover it. */
  .hero-trust { display: none; }
  .people-colors { flex-direction: column; }
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .trust-strip { gap: 14px 26px; }
  .vvt-tags { gap: 24px; }
  .vvt-tags img { height: 168px; }
}

/* ── v3: Places & People dual cards ───────────────────────────── */
.dual { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 920px; margin: 44px auto 0; text-align: left; }
.dual-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.dual-img { aspect-ratio: 16 / 11; overflow: hidden; background: var(--card); }
.dual-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dual-body { padding: 22px 24px 26px; }
.dual-kind { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.dual-body h3 { font-size: 21px; margin: 8px 0 0; }
.dual-body p { color: var(--muted); margin: 10px 0 0; font-size: 15px; line-height: 1.5; }

/* ── v3: People showcase ──────────────────────────────────────── */
.people-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; max-width: 980px; margin: 44px auto 0; text-align: left; }
.people-photo { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--card); }
.people-photo img { display: block; width: 100%; height: auto; }
.people-points { list-style: none; margin: 0; padding: 0; }
.people-points li { position: relative; padding: 0 0 14px 28px; color: var(--muted); font-size: 15px; line-height: 1.5; }
.people-points li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--cyan); font-weight: 800; }
.people-points li strong { color: var(--ink); font-weight: 700; }
.people-colors-label { margin: 20px 0 8px; }
.people-colors { display: flex; gap: 14px; margin: 0 0 22px; }
.people-colors img { flex: 1; min-width: 0; width: 100%; height: auto; border-radius: 12px; border: 1px solid var(--border); background: #fff; }
.pay-note { max-width: 660px; margin: 26px auto 0; }

/* ── v3: Places / People section toggle ───────────────────────── */
.seg-wrap { display: flex; justify-content: center; margin: 20px 0 6px; }
.seg-wrap .toggle { margin: 0; }
.seg-panel[hidden] { display: none !important; }
/* Placeholder photo box (People photos you'll supply). */
.photo-slot { display: flex; align-items: center; justify-content: center; text-align: center; background: rgba(8, 168, 227, 0.05); border: 1.5px dashed rgba(8, 168, 227, 0.45); border-radius: 16px; color: var(--muted); font-size: 12.5px; font-weight: 600; line-height: 1.45; padding: 18px; min-height: 210px; }
.photo-slot span { max-width: 230px; }
.photo-slot::before { content: '📷'; display: block; font-size: 22px; margin-bottom: 8px; opacity: 0.7; }
.photo-slot { flex-direction: column; }
/* Placeholder slot sized to fill a carousel figure (until People photos arrive). */
.carousel .carousel-slot { width: 100%; height: 420px; min-height: 0; border: 0; border-radius: 0; background: rgba(8, 168, 227, 0.08); }
.carousel .carousel-slot span { max-width: none; font-size: 17px; font-weight: 700; color: var(--ink-2); }
/* People use-case grid (carousel alternative until photos arrive). */
/* People use-case icon tiles ("One tag. Endless peace of mind."). */
.usecase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 940px; margin: 34px auto 0; }
.usecase-grid figure { margin: 0; background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 22px 14px; box-shadow: var(--shadow-sm); text-align: center; }
.usecase-grid svg { width: 30px; height: 30px; color: var(--cyan); }
.usecase-grid figcaption { margin-top: 12px; font-weight: 700; font-size: 14px; line-height: 1.3; }

/* "Made for the people you care about." audience cards. */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 40px auto 0; text-align: left; }
.audience-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.audience-card .ac-icon { width: 30px; height: 30px; color: var(--cyan); }
.audience-card .ac-kind { margin: 16px 0 4px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.audience-card h3 { font-size: 21px; line-height: 1.15; }
.audience-card p { color: var(--muted); font-size: 14.5px; line-height: 1.5; margin: 10px 0 0; }
.audience-card .ac-link { margin-top: auto; padding-top: 18px; font-weight: 700; font-size: 14px; color: var(--cyan); }
.audience-card .ac-link:hover { color: var(--cyan-deep); }

/* Closing CTA banner ("…don't always carry phones."). */
.closing { position: relative; display: grid; grid-template-columns: 1.4fr 0.6fr; align-items: center; gap: 24px; background: var(--bg-alt, rgba(233, 238, 244, 0.6)); border: 1px solid var(--border); border-radius: var(--radius); padding: 44px 48px; max-width: 1000px; margin: 0 auto; }
.closing h2 { font-size: clamp(24px, 3vw, 34px); line-height: 1.12; }
.closing p { color: var(--muted); margin: 14px 0 22px; max-width: 460px; }
.promo-pill { position: absolute; top: -13px; right: 28px; background: var(--cyan); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 15px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.closing-img { margin: 0; text-align: center; }
.closing-img img { height: 200px; width: auto; filter: drop-shadow(0 6px 12px rgba(17, 21, 28, 0.25)); }

/* Trust strip under the hero. */
.trust-strip-section { padding: 26px 0; border-bottom: 1px solid var(--border); }
.trust-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 44px; }
/* Phones: trust items stack one per line, icon as the bullet. */
@media (max-width: 768px) {
  .trust-strip { flex-direction: column; align-items: flex-start; gap: 12px; }
}
.trust-item { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; color: var(--ink-2); }
.trust-item svg { width: 21px; height: 21px; color: var(--cyan); flex-shrink: 0; }

/* ── v4 People-first additions ─────────────────────────────────── */
.hero-cta { margin-top: 22px; }

/* How it works — 3 steps */
.how3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 880px; margin: 40px auto 0; }
.how-step { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow-sm); text-align: center; }
.how-step .how-num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 999px; background: rgba(8, 168, 227, 0.12); color: var(--cyan); font-weight: 800; font-size: 14px; }
.how-step svg { width: 34px; height: 34px; color: var(--cyan); margin: 14px 0 2px; }
.how-step h3 { font-size: 18px; margin-top: 6px; }
.how-step p { color: var(--muted); font-size: 14.5px; line-height: 1.5; margin: 8px 0 0; }

/* Choose your color */
.color-hero { margin: 30px auto 8px; max-width: 760px; border-radius: var(--radius); overflow: hidden; }
.color-hero img { width: 100%; height: auto; border-radius: var(--radius); }
.colors { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 28px; margin: 14px 0 26px; }
.color { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 14px; color: var(--ink-2); }
.color .sw { width: 20px; height: 20px; border-radius: 999px; border: 1px solid var(--border); display: inline-block; }

/* Everyday moments — the photo slot fills the dual image area */
.dual-img .photo-slot { height: 100%; min-height: 0; border: 0; border-radius: 0; }

/* Closing — centered, single column (no image) */
.closing.closing-center { grid-template-columns: 1fr; text-align: center; }
.closing.closing-center .btn { margin-top: 20px; }

/* Closing CTA — gradient card, tight centered column, contained button */
.closing.closing-cta {
  max-width: 760px;
  padding: 58px 48px 50px;
  background:
    radial-gradient(120% 150% at 50% -30%, rgba(140, 116, 222, 0.13), transparent 62%),
    linear-gradient(135deg, rgba(8, 168, 227, 0.09) 0%, rgba(140, 116, 222, 0.11) 100%);
  border: 1px solid rgba(140, 116, 222, 0.2);
}
.closing-cta .closing-eyebrow {
  margin: 0 0 14px; max-width: none;
  font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
}
.closing.closing-cta h2 { font-size: clamp(28px, 4.2vw, 42px); line-height: 1.1; letter-spacing: -0.015em; }
.closing.closing-cta > p { max-width: 540px; margin: 18px auto 0; font-size: 17px; line-height: 1.6; color: var(--ink-2); }
.closing.closing-cta .btn { justify-self: center; margin-top: 28px; padding: 14px 38px; font-size: 16px; }
.closing-cta .closing-trust { margin: 16px auto 0; max-width: none; font-size: 13px; color: var(--muted); }
.closing-cta .promo-pill { left: 50%; right: auto; transform: translateX(-50%); }

/* Footer — tagline + PhoneTag Places teaser */
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 30px 24px 24px; border-bottom: 1px solid var(--border); }
.footer-brand img { height: 22px; width: auto; }
.footer-tagline { margin: 8px 0 0; font-weight: 600; color: var(--ink-2); font-size: 15px; }
.footer-teaser { text-align: right; display: block; transition: opacity 0.15s ease; }
.footer-teaser:hover { opacity: 0.78; }
.footer-teaser:hover .ft-title { color: var(--cyan); }
.ft-kicker { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin: 0; }
.ft-title { font-weight: 800; font-size: 16px; margin: 2px 0; }
.footer-teaser .small { margin: 0; }
.footer-inner { padding-top: 22px; }
@media (max-width: 600px) {
  .how3 { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-teaser { text-align: left; }
}

/* ── v3: VVT two-tag row (Places left, People right) ──────────── */
.vvt-tags { display: flex; align-items: flex-end; justify-content: center; gap: 56px; margin: 0 0 8px; }
.vvt-tags figure { margin: 0; text-align: center; }
.vvt-tags img { height: 240px; width: auto; filter: drop-shadow(0 6px 10px rgba(17, 21, 28, 0.28)); }
.vvt-tags figcaption { margin-top: 12px; font-weight: 700; font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); }

/* ── Mobile responsive overrides (MUST stay last) ─────────────────
   The v3/v4 component bases above (.dual, .people-showcase, .usecase-grid,
   etc.) are declared AFTER the original @media blocks, so they win the
   cascade on small screens unless we re-assert the responsive layout here,
   at the very end of the file. This fixes the mobile horizontal overflow. */
@media (max-width: 900px) {
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .dual { grid-template-columns: 1fr; gap: 22px; }
  .people-showcase { grid-template-columns: 1fr; max-width: 460px; }
  .vvt-tags { gap: 36px; }
  .vvt-tags img { height: 200px; }
}
@media (max-width: 600px) {
  .usecase-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .usecase-grid figure { padding: 18px 10px; }
  .usecase-grid figcaption { overflow-wrap: anywhere; }
  .people-colors { flex-direction: column; }
  .closing.closing-cta { padding: 44px 24px 38px; }
  .vvt-tags { gap: 24px; }
  .vvt-tags img { height: 168px; }
}

/* ════════════════ v4 redesign (premium collection) ════════════════ */

/* Hero: brighter, with a static fallback image behind the video */
.hero-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-bg { z-index: 1; }
.hero-overlay { z-index: 2; }
.hero-inner, .hero-trust { z-index: 3; }
/* Lighter, left-weighted hero scrim so the brightened video reads premium while
   the white headline (left) stays legible. */
.hero-overlay {
  background: linear-gradient(100deg, rgba(9,13,20,0.66) 0%, rgba(9,13,20,0.42) 40%, rgba(9,13,20,0.16) 74%, rgba(9,13,20,0.10) 100%);
}
.hero-tagline {
  margin: 14px 0 0; color: #fff; font-size: clamp(17px, 2.1vw, 22px);
  font-weight: 700; letter-spacing: -0.01em;
}
.hero-sub { margin-top: 12px; }

/* Collection — premium product family grid */
.collection {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: 1040px; margin: 40px auto 32px;
}
/* First two cards span to keep a balanced 2-then-3 / 3-then-2 rhythm */
.product-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 26px 30px; text-align: left;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-shot {
  height: 168px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; border-radius: 16px;
  background: radial-gradient(120% 120% at 50% 20%, rgba(8,168,227,0.07), transparent 70%);
}
.product-shot img { max-height: 150px; width: auto; object-fit: contain; }
.front-msg {
  align-self: flex-start; font-size: 11px; font-weight: 800; letter-spacing: 0.13em;
  text-transform: uppercase; padding: 5px 11px; border-radius: 999px;
}
.msg-emergency { background: rgba(225, 75, 90, 0.10); color: #d6354c; }
.msg-owner { background: rgba(8,168,227,0.10); color: var(--cyan-deep); }
.product-card h3 { font-size: 22px; margin: 12px 0 0; letter-spacing: -0.01em; }
.product-card p { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 10px 0 0; }
.product-card .best-for {
  margin-top: auto; padding-top: 16px; color: var(--ink-2);
  font-size: 12.5px; font-weight: 700;
}

/* Why PhoneTag — three clean columns */
.why-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  max-width: 920px; margin: 44px auto 0; text-align: center;
}
.why-ic {
  width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,168,227,0.09); color: var(--cyan);
}
.why-ic svg { width: 26px; height: 26px; }
.why-col h3 { font-size: 19px; margin: 0; }
.why-col p { color: var(--muted); font-size: 15px; line-height: 1.5; margin: 8px 0 0; }

/* Coming soon — PhoneTag Places teaser */
.places-teaser {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: center;
  background: var(--bg-alt, rgba(233,238,244,0.6)); border: 1px solid var(--border);
  border-radius: 26px; padding: 44px 48px; max-width: 1000px; margin: 0 auto;
}
.places-copy h2 { font-size: clamp(28px, 3.6vw, 40px); margin: 12px 0 0; }
.places-copy > p { color: var(--ink-2); font-size: 16px; line-height: 1.55; margin: 12px 0 0; max-width: 420px; }
.soon-pill {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cyan-deep); background: rgba(8,168,227,0.10);
  padding: 6px 13px; border-radius: 999px;
}
.places-list {
  list-style: none; margin: 18px 0 22px; padding: 0; display: grid;
  grid-template-columns: 1fr 1fr; gap: 8px 18px;
}
.places-list li { position: relative; padding-left: 22px; color: var(--ink-2); font-size: 14.5px; }
.places-list li::before { content: '→'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.places-art { text-align: center; }
.places-art img { width: 100%; max-width: 320px; border-radius: 18px; box-shadow: var(--shadow); }

/* The future of connection */
.future-rows { margin: 24px auto 26px; max-width: 520px; }
.future-rows p { font-size: 18px; color: var(--ink-2); margin: 8px 0; }
.future-when {
  display: inline-block; min-width: 104px; font-weight: 800; color: var(--ink);
  letter-spacing: 0.04em; text-transform: uppercase; font-size: 13px;
}
.future-when.soon { color: var(--cyan-deep); }

@media (max-width: 900px) {
  .collection { grid-template-columns: 1fr 1fr; }
  .why-cols { grid-template-columns: 1fr; gap: 26px; }
  .places-teaser { grid-template-columns: 1fr; padding: 32px 26px; text-align: center; }
  .places-copy > p { margin-left: auto; margin-right: auto; }
  .places-list { max-width: 320px; margin-left: auto; margin-right: auto; }
  .places-art { display: none; }
}
@media (max-width: 600px) {
  .collection { grid-template-columns: 1fr; }
}

/* Everyday Applications — placeholder carousel slides */
.carousel .carousel-slot.ph {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(135deg, rgba(8,168,227,0.12), rgba(140,116,222,0.12));
  color: var(--ink-2);
}
.carousel .carousel-slot.ph span {
  font-size: 20px; font-weight: 800; letter-spacing: -0.01em; padding: 0 24px; max-width: 360px;
}

/* Popular Uses grid */
.popular-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 940px; margin: 40px auto 0;
}
.pop-item {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 26px 16px; text-align: center; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pop-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pop-ic { width: 46px; height: 46px; color: var(--cyan); }
.pop-ic svg { width: 100%; height: 100%; }
.pop-item span { font-size: 14px; font-weight: 700; color: var(--ink); }

@media (max-width: 760px) { .popular-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── The difference: live-video band ── */
.live-band { position: relative; }
.live-inner {
  position: relative; text-align: center; max-width: 960px; margin: 0 auto;
  padding: clamp(40px, 5vw, 60px) clamp(24px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(8,168,227,0.06), rgba(140,116,222,0.05));
  border: 1px solid var(--border); border-radius: 30px;
  box-shadow: var(--shadow-sm);
}
.live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(8,168,227,0.10); color: var(--cyan-deep);
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.live-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--cyan); box-shadow: 0 0 0 0 rgba(8,168,227,0.55); animation: livePulse 2s ease-out infinite; }
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(8,168,227,0.5); }
  70% { box-shadow: 0 0 0 9px rgba(8,168,227,0); }
  100% { box-shadow: 0 0 0 0 rgba(8,168,227,0); }
}
.live-points {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px; margin-top: 26px;
}
.live-point { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px; color: var(--ink); }
.live-point svg { width: 22px; height: 22px; color: var(--cyan); flex: none; }
html.dark .live-inner { background: linear-gradient(180deg, rgba(8,168,227,0.10), rgba(140,116,222,0.08)); }

/* ── Scroll reveal — gentle fade-up as sections enter the viewport ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s cubic-bezier(.16,.7,.3,1), transform 0.7s cubic-bezier(.16,.7,.3,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .live-dot { animation: none; }
}

/* ── Collection: bold lead-in + 6th (doorbell, coming-soon) card ── */
.product-card p strong { color: var(--ink); font-weight: 700; }
.product-shot { position: relative; overflow: hidden; }
.shot-soon {
  position: absolute; top: 12px; right: 12px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan-deep); background: rgba(8,168,227,0.12);
  padding: 5px 10px; border-radius: 999px;
}
.doorbell-art { width: 74px; height: 74px; color: var(--cyan); opacity: 0.92; }
.soon-card .product-shot {
  background: radial-gradient(120% 120% at 50% 22%, rgba(8,168,227,0.11), rgba(140,116,222,0.06) 72%);
}

/* ════════════════ Phase 3+ polish — typography & hover ════════════════ */
h1 { letter-spacing: -0.032em; }
h2 { letter-spacing: -0.028em; }
.lead { line-height: 1.6; }
.hero-sub { letter-spacing: -0.004em; }
.hero-tagline { letter-spacing: -0.015em; }

/* Buttons — subtle lift + cyan glow on hover, springier press */
.btn { transition: transform 0.12s cubic-bezier(.16,.7,.3,1), background 0.15s ease, box-shadow 0.18s ease; }
.btn-primary:hover { transform: translateY(-1.5px); box-shadow: 0 12px 26px -12px rgba(8,168,227,0.85); }
.btn-soft:hover, .btn-dark:hover { transform: translateY(-1.5px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0) scale(0.98); }

/* Card & icon micro-interactions */
.why-ic { transition: transform 0.25s cubic-bezier(.16,.7,.3,1); }
.why-col:hover .why-ic { transform: translateY(-2px) scale(1.06); }
.pop-ic { transition: transform 0.2s ease; }
.pop-item:hover .pop-ic { transform: scale(1.08); }
.trust-item { transition: color 0.18s ease; }
.trust-item:hover { color: var(--ink); }
.places-art img { transition: transform 0.4s cubic-bezier(.16,.7,.3,1); }
.places-teaser:hover .places-art img { transform: scale(1.03); }
@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover, .btn-soft:hover, .btn-dark:hover,
  .why-col:hover .why-ic, .pop-item:hover .pop-ic,
  .places-teaser:hover .places-art img { transform: none; }
}

/* ════════════ Pills: unified brand gradient (like the toolbar) ════════════
   The flat cyan fill read as a button; the cyan→lavender gradient + white text
   makes these read as labels instead. (Emergency Contact stays red — it's an
   urgency signal, not a button-like blue.) */
.badge, .pill, .soon-pill, .shot-soon, .live-pill, .front-msg.msg-owner {
  background: linear-gradient(120deg, #908aea 0%, #b69ceb 100%) !important;
  color: #fff !important;
  border: 0;
}
.live-pill .live-dot { background: #fff; animation: livePulseW 2s ease-out infinite; }
@keyframes livePulseW {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ── AI assistant feature (image + copy) ── */
.ai-grid {
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(28px, 5vw, 64px);
  align-items: center; max-width: 1060px; margin: 0 auto; text-align: left;
}
.ai-copy h2 { margin-top: 4px; }
.ai-copy .lead { margin-top: 14px; max-width: 470px; }
.ai-points { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 15px; }
.ai-points li { display: flex; gap: 13px; align-items: flex-start; }
.ai-points svg { width: 22px; height: 22px; color: var(--cyan); flex: none; margin-top: 1px; }
.ai-points span { color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.ai-points strong { color: var(--ink); font-weight: 700; }
.ai-art img {
  width: 100%; border-radius: 22px; box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(.16,.7,.3,1);
}
.ai-feature:hover .ai-art img { transform: translateY(-4px); }
@media (max-width: 820px) {
  .ai-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; max-width: 560px; }
  .ai-copy .lead { margin-left: auto; margin-right: auto; }
  .ai-points { max-width: 420px; margin-left: auto; margin-right: auto; text-align: left; }
}
@media (prefers-reduced-motion: reduce) { .ai-feature:hover .ai-art img { transform: none; } }

/* Pricing — keep the featured glow on hover + the cyan note colour */
.plan.featured:hover { box-shadow: 0 30px 62px -26px rgba(8, 168, 227, 0.6); }
.price-note.cyan { color: var(--cyan-deep); }

/* ════════════ Pricing — calm single panel ════════════ */
.price-panel {
  max-width: 600px; margin: 42px auto 0; text-align: center;
  background: var(--card); border: 1px solid var(--border); border-radius: 26px;
  box-shadow: var(--shadow); padding: clamp(30px, 4vw, 46px) clamp(24px, 4vw, 48px);
}
.price-pair { display: flex; align-items: stretch; justify-content: center; gap: clamp(20px, 4vw, 44px); }
.price-col { flex: 1; }
.pc-label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin: 0; }
.pc-amount { font-size: clamp(24px, 3.6vw, 31px); font-weight: 300; letter-spacing: -0.04em; line-height: 1.04; margin: 10px 0 0; }
.pc-sub { color: var(--muted); font-size: 13.5px; margin: 7px 0 0; }
.price-div { width: 1px; flex: none; align-self: stretch; background: var(--border); }

.price-callout {
  display: flex; align-items: center; gap: 13px; text-align: left;
  margin: 28px 0 0; padding: 15px 20px; border-radius: 16px;
  background: linear-gradient(120deg, rgba(8,168,227,0.08), rgba(144,138,234,0.08));
  border: 1px solid rgba(8,168,227,0.16);
}
.price-callout svg { width: 26px; height: 26px; color: var(--cyan); flex: none; }
.price-callout span { font-size: 14px; color: var(--ink-2); line-height: 1.45; }
.price-callout strong { color: var(--ink); font-weight: 700; }

.price-shop { margin-top: 28px; min-width: 220px; }
.price-fine { color: var(--muted); font-size: 12.5px; margin: 14px 0 0; }

@media (max-width: 560px) {
  .price-pair { flex-direction: column; gap: 24px; }
  .price-div { width: auto; height: 1px; }
  .price-callout { flex-direction: column; text-align: center; gap: 10px; }
}

/* Everyday moments — styled placeholder tile (Vehicles, until a photo is added) */
.dual-img.ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, rgba(8,168,227,0.12), rgba(144,138,234,0.12));
}
.dual-img.ph .ph-ic { width: 40px; height: 40px; color: var(--cyan); }
.dual-img.ph span { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; color: var(--ink-2); }

/* Photo-style product shots (Surface / Glass / Places) — the real photo fills
   the shot (cover, branded top). Render-style shots (transparent PNGs) keep the
   default contain treatment. */
.product-shot.photo-shot { padding: 0; }
.product-shot.photo-shot img {
  width: 100%; height: 100%; max-height: none; object-fit: cover; object-position: 50% 24%;
}

/* ════════════════ Kids launch (2026-07) ════════════════ */
/* Inline "Coming soon" chip — used on moment cards, carousel captions, etc. */
.soon-chip {
  display: inline-block; vertical-align: 2px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan-deep); background: #fff;
  padding: 4px 9px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
}
.soon-chip.now-chip { color: #fff; background: var(--cyan); box-shadow: none; }
html.dark .soon-chip { background: #fff; color: var(--cyan-deep); }
html.dark .soon-chip.now-chip { color: #06121c; background: var(--cyan); }

/* Featured launch product card (PhoneTag Kids) above the coming-soon grid. */
.kids-feature {
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 20px;
  max-width: 1040px; margin: 0 auto 26px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 40px 44px; overflow: hidden;
}
.kids-copy h3 { font-size: clamp(26px, 3.2vw, 34px); letter-spacing: -0.025em; margin: 12px 0 10px; }
.kids-copy p { color: var(--muted); line-height: 1.6; max-width: 46ch; }
.kids-copy p strong { color: var(--ink); font-weight: 700; }
.kids-colors { display: flex; align-items: center; gap: 8px; margin: 18px 0 6px; }
.kc-dot {
  width: 22px; height: 22px; border-radius: 50%; padding: 0; border: 0;
  background: var(--kc);
  cursor: pointer; -webkit-appearance: none; appearance: none;
  transition: transform .15s ease;
}
.kc-dot:hover { transform: scale(1.14); }
.kc-dot:focus-visible { outline: none; }
.kc-dot.is-active { transform: scale(1.2); }
.kc-names { margin-left: 6px; font-size: 13px; color: var(--muted); font-weight: 600; }
.kids-price { margin: 10px 0 18px; font-size: 22px; font-weight: 300; color: var(--ink); }
.kids-price span { display: block; font-size: 13.5px; font-weight: 500; color: var(--muted); margin-top: 6px; line-height: 1.4; }
/* All four color renders are stacked; the selected one cross-fades in over the
   others (like the /shop stage) — smoother than swapping a single <img> src. */
.kids-shot {
  position: relative; width: 100%; max-width: 380px; margin: 0 auto;
  aspect-ratio: 1000 / 1200;
}
.kids-shot .kids-tag-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(17,21,28,0.18));
  opacity: 0; transition: opacity .45s ease;
}
.kids-shot .kids-tag-img.is-active { opacity: 1; }
@media (max-width: 860px) {
  .kids-feature { grid-template-columns: 1fr; padding: 28px 22px; text-align: center; }
  .kids-copy p { margin-left: auto; margin-right: auto; }
  .kids-colors { justify-content: center; }
  .kids-shot { order: -1; max-width: 280px; }
}

/* Popular-uses grid: non-launch uses read as quietly pending. */
.pop-item.pop-soon { opacity: 0.5; }


/* Kids-card 360° spinner */
.kids-shot { position: relative; display: flex; flex-direction: column; align-items: center; }
.kids-spin { height: 420px; touch-action: pan-y; cursor: grab; display: block; }
.kids-spin:active { cursor: grabbing; }
.kids-spin-hint { margin: 6px 0 0; font-size: 12px; color: var(--muted); }
@media (max-width: 860px) { .kids-spin { height: 340px; } }

/* Phones: the hero keeps just the headline + tagline + CTA — the supporting
   paragraph is desktop/tablet-only, and the tagline + CTA anchor to the hero's
   bottom edge (headline stays up top, below the nav pill). */
@media (max-width: 600px) {
  .hero-sub { display: none; }
  /* ...but when a page relocates the hero copy BELOW the video (apex,
     /influencer), the paragraph is the point — show it there. */
  .hero-below .hero-sub { display: block; }
  .hero-card { align-items: stretch; }
  .hero-inner { display: flex; flex-direction: column; }
  .hero-tagline { margin-top: auto; }
}

/* Sound toggle on the hero film (all marketing heroes; defaults muted). */
.hero-sound {
  position: absolute; bottom: 16px; left: 16px; z-index: 6;
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.45); color: #fff; cursor: pointer;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: background 0.15s ease, transform 0.1s ease;
}
.hero-sound:hover { background: rgba(0, 0, 0, 0.65); }
.hero-sound:active { transform: scale(0.95); }
/* One icon at a time, driven by the button's state class (inline SVG does
   not reliably honor the `hidden` attribute/property across browsers). */
.hero-sound .ic-sound-on { display: block; }
.hero-sound .ic-sound-off { display: none; }
.hero-sound.is-muted .ic-sound-on { display: none; }
.hero-sound.is-muted .ic-sound-off { display: block; }
