/* 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(560px 560px at 88% 16%, rgba(5, 170, 228, 0.08), transparent 72%),
    radial-gradient(560px 560px at 6% 52%, rgba(5, 170, 228, 0.07), transparent 72%);
}
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 { 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;
  /* Desktop: transparent so the frosted pill floats over the page. The mobile
     @media below restores a solid fill (Safari tints the status bar from it
     and the drawer needs an opaque backdrop). Ported from the v4 site. */
  background-color: transparent;
}
.nav {
  max-width: none; margin: 0 auto;
  background: rgba(18, 22, 28, 0.48); color: #fff;
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  backdrop-filter: saturate(160%) blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 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: 26px 18px 0; }
.hero-card { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; border-radius: 30px; color: #fff; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.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-cta { margin-top: 22px; display: inline-block; }
.hero-alt-path { margin-top: 14px; font-size: 14.5px; }
.hero-alt-path a { color: rgba(255, 255, 255, 0.75); text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, 0.25); padding-bottom: 1px; }
.hero-alt-path a:hover { color: #fff; border-bottom-color: rgba(255, 255, 255, 0.6); }
.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: 86px 0; background: transparent; }
.section.alt { background: rgba(233, 238, 244, 0.5); }
html.dark .section.alt { background: #161d27; }
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); }

/* ── 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(3, 1fr); gap: 22px; max-width: 1180px; margin: 28px auto 0; text-align: left; }
.plan { position: relative; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.plan.featured { border: 1.5px solid var(--cyan); }
.badge { position: absolute; top: -11px; right: 26px; background: var(--cyan); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; padding: 4px 12px; border-radius: 999px; }
.plan h3 { font-size: 23px; }
.plan > .small { margin: 4px 0 0; }
.price { margin: 18px 0 2px; display: flex; align-items: baseline; gap: 2px; }
.price .amount { font-size: 46px; font-weight: 800; letter-spacing: -0.04em; }
.price .per { color: var(--muted); font-weight: 600; font-size: 16px; }
.price-note { font-size: 14px; font-weight: 600; margin: 0 0 22px; }
.features { list-style: none; margin: 24px 0 0; padding: 0; }
.features li { position: relative; padding: 9px 0 9px 30px; font-size: 14.5px; }
.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-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 0 24px 22px; border-bottom: 1px solid var(--border); margin-bottom: 22px; }
.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; }
@media (max-width: 600px) {
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-teaser { text-align: left; }
}
.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; background-color: var(--bg); }
  .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; }
  .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; }
  .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; }
  .hero-card { min-height: 440px; }
  .hero h1 { font-size: 32px; }
  .hero-trust { font-size: 12px; }
}

/* App Store / Google Play badges in the footer — both route through /get-app
   (which deep-links into the app when installed, stores otherwise). */
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #0b1018; border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px; padding: 9px 16px;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.store-badge:hover { border-color: rgba(255, 255, 255, 0.3); background: #161d28; transform: translateY(-1.5px); }
.store-badge .sb-txt { display: block; text-align: left; line-height: 1; }
.store-badge .sb-small { display: block; font-size: 10px; color: #fff; opacity: 0.85; }
.store-badge .sb-big { display: block; margin-top: 3px; font-size: 15px; font-weight: 600; color: #fff; }


/* ════════════════ PhoneTag Family on Places (ported from v4, 2026-07) ════════════════ */
/* Inline "Available now" / "Coming soon" chip on carousel captions. */
.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); }
.carousel figure .soon-chip { position: absolute; right: 16px; bottom: 14px; z-index: 2; vertical-align: 0; }

/* The four Family colorways, presented like shelf stock. */
.family-tags {
  display: flex; justify-content: center; align-items: flex-end;
  gap: clamp(14px, 4vw, 44px); margin: 34px 0 8px;
}
.family-tag { margin: 0; }
.family-tag img {
  height: clamp(120px, 22vw, 190px); width: auto; display: block;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.22));
  transition: transform 0.35s ease;
}
.family-tag:hover img { transform: translateY(-6px); }
.family-tag figcaption { margin-top: 10px; text-align: center; font-size: 13px; font-weight: 600; color: var(--muted); }

.family-bridge { max-width: 560px; margin: 26px auto 0; color: var(--muted); font-size: 15.5px; line-height: 1.6; }
.family-ctas { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 22px; flex-wrap: wrap; }
.family-more { color: var(--cyan); font-weight: 600; text-decoration: none; }
.family-more:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .family-tags { gap: 12px; }
  .family-tag img { height: 108px; }
}
