/* ==========================================================================
   ezyinsp.com — umbrella brand site: EzyInsp (free) + EzyInsp Pro.
   Forked from site-pro/style.css; tokens identical to the EzyInsp Pro design
   system (warm ink-on-paper, ochre accent, Archivo display / Inter body,
   verified blue reserved for form-currency chips, ink-900 dark surfaces).
   Umbrella-only components (device frames, compare table, support hub, docs)
   are appended at the end.
   ========================================================================== */

/* ----- Tokens (subset of the design-system tokens.css, same values) ------ */
:root {
  --ink-900: #0B0B0C;
  --ink-800: #1A1A1D;
  --ink-700: #333338;
  --ink-600: #55555B;
  --ink-500: #77777E;
  --ink-400: #A3A3A9;
  --ink-300: #CCCCD1;
  --ink-200: #E4E4E7;
  --ink-100: #F1F1F3;
  --ink-050: #F7F7F8;
  --paper:   #FCFBF7;
  --paper-2: #F4F2EA;
  --white:   #FFFFFF;

  --ochre-700: #9A4A00;
  --ochre-600: #B85900;
  --ochre-500: #D26A00;
  --ochre-400: #E88320;
  --ochre-100: #FBE5CC;
  --ochre-050: #FDF4E8;

  --good-500: #2F9E5A;
  --poor-500: #D64A25;

  --verified-700: #1E4C86;
  --verified-500: #2C6AB0;
  --verified-100: #DCE8F6;
  --verified-050: #EEF4FB;

  --pro-ink:      #0B0B0C;
  --pro-panel:    #17171B;
  --pro-panel-2:  #212127;
  --pro-hairline: rgba(255,255,255,0.10);
  --pro-hairline-2: rgba(255,255,255,0.16);
  --pro-gilt:     #E8B778;

  --font-display: 'Archivo', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --r-sm: 4px; --r-md: 8px; --r-lg: 12px; --r-xl: 16px; --r-2xl: 20px; --r-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(11,11,12,0.08), 0 1px 2px rgba(11,11,12,0.04);
  --shadow-md: 0 4px 12px rgba(11,11,12,0.08), 0 1px 2px rgba(11,11,12,0.06);
  --shadow-lg: 0 12px 32px rgba(11,11,12,0.10), 0 4px 8px rgba(11,11,12,0.06);
  --shadow-xl: 0 24px 56px rgba(11,11,12,0.14), 0 8px 16px rgba(11,11,12,0.08);

  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --dur-base: 200ms;

  --wrap: 1120px;
}

/* ----- Base ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.6;
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--ochre-600); text-decoration: none; }
a:hover { color: var(--ochre-700); text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink-900); margin: 0; }
p { margin: 0; }
:focus-visible { outline: 3px solid rgba(210,106,0,0.55); outline-offset: 2px; border-radius: var(--r-sm); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
section[id] { scroll-margin-top: 76px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ----- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px; line-height: 1.2;
  padding: 13px 22px; border-radius: var(--r-lg); text-decoration: none;
  transition: transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard);
  cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--ink { background: var(--ink-900); color: #fff; box-shadow: var(--shadow-sm); }
.btn--ink:hover { background: var(--ink-800); color: #fff; box-shadow: var(--shadow-md); }
.btn--ochre { background: var(--ochre-500); color: #fff; box-shadow: var(--shadow-sm); }
.btn--ochre:hover { background: var(--ochre-600); color: #fff; box-shadow: var(--shadow-md); }
.btn--ghost { background: var(--white); color: var(--ink-900); border: 1px solid var(--ink-300); }
.btn--ghost:hover { color: var(--ink-900); border-color: var(--ink-400); background: var(--ink-050); }
.btn svg { width: 18px; height: 18px; flex: none; }

/* App Store badge-style button (two-line) */
.appstore { padding: 11px 20px; }
.appstore .appstore__txt { display: flex; flex-direction: column; align-items: flex-start; }
.appstore .appstore__sm { font-size: 10px; font-weight: 500; opacity: 0.75; line-height: 1.2; }
.appstore .appstore__lg { font-family: var(--font-display); font-size: 16px; font-weight: 700; line-height: 1.15; }
.appstore svg { width: 22px; height: 22px; }

/* ----- Nav ------------------------------------------------------------------ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 251, 247, 0.88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-200);
}
.nav__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 64px; }
.lockup { display: inline-flex; align-items: flex-end; gap: 8px; text-decoration: none; }
.lockup:hover { text-decoration: none; }
.lockup img { height: 21px; width: auto; }
.lockup .lockup__pro {
  font-family: var(--font-display); font-weight: 800; font-size: 13px; line-height: 1;
  background: var(--ochre-500); color: #fff; padding: 3px 6px 2px;
  letter-spacing: 0.01em; transform: translateY(-1px);
}
.nav__links { display: flex; gap: 28px; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--ink-700); }
.nav__links a:hover { color: var(--ink-900); text-decoration: none; }
.nav .btn { padding: 9px 16px; font-size: 13px; border-radius: var(--r-md); }

/* ----- Hero ------------------------------------------------------------------ */
.hero { padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 6vw, 72px); border-bottom: 1px solid var(--ink-200); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--ochre-600);
}
.hero h1 {
  font-weight: 800; font-size: clamp(38px, 5.4vw, 62px); line-height: 1.02;
  letter-spacing: -0.03em; margin: 18px 0 0;
}
.hero h1 em { font-style: normal; color: var(--ochre-500); }
.hero__sub { font-size: 17px; line-height: 1.6; color: var(--ink-700); max-width: 480px; margin: 20px 0 0; }
.hero__cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; align-items: center; }
.hero__meta { display: flex; gap: 8px 20px; margin-top: 24px; flex-wrap: wrap; }
.hero__meta span {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-600);
}
.hero__meta span::before { content: '✓'; color: var(--good-500); font-weight: 700; }

/* Phone mockup — mirrors the real Reports home (usage card, NEW REPORT
   start modes, YOUR REPORTS browser, Reports/Properties/Settings tabs). */
.hero__right { display: flex; justify-content: center; position: relative; padding: 12px 0; }
.phone {
  width: 302px; background: var(--ink-900); border-radius: 44px; padding: 10px;
  box-shadow: var(--shadow-xl); transform: rotate(-2deg); position: relative;
}
.phone__screen { background: var(--paper); border-radius: 35px; overflow: hidden; position: relative; }
.phone__island { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 82px; height: 22px; background: #000; border-radius: var(--r-pill); z-index: 5; }
.phone__in { padding: 46px 13px 0; }
.phone__title { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 10px; }
.pcard { background: var(--white); border: 1px solid var(--ink-200); border-radius: var(--r-lg); padding: 10px 11px; margin-bottom: 7px; }
.pcard--usage { display: flex; align-items: center; justify-content: space-between; gap: 8px; background: var(--ochre-050); border-color: var(--ochre-100); }
.pcard--usage .u1 { font-weight: 600; font-size: 11.5px; color: var(--ink-900); }
.pcard--usage .u2 { font-size: 9px; color: var(--ink-600); margin-top: 1px; }
.pcard--usage .ubtn { font-weight: 700; font-size: 10px; color: #fff; background: var(--ochre-500); border-radius: var(--r-pill); padding: 5px 10px; white-space: nowrap; }
.plabel { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.12em; color: var(--ink-500); margin: 9px 2px 6px; }
.prow { display: flex; align-items: center; gap: 9px; }
.prow__ic { width: 30px; height: 30px; border-radius: var(--r-md); background: var(--ochre-050); color: var(--ochre-600); display: flex; align-items: center; justify-content: center; flex: none; }
.prow__ic--ink { background: var(--ink-900); color: #fff; }
.prow__ic svg { width: 15px; height: 15px; }
.prow__t { min-width: 0; }
.prow__nm { font-family: var(--font-display); font-weight: 700; font-size: 11.5px; color: var(--ink-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prow__s { font-size: 9px; color: var(--ink-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prow__chip { margin-left: auto; flex: none; font-weight: 600; font-size: 8.5px; padding: 3px 7px; border-radius: var(--r-pill); background: var(--ink-050); color: var(--ink-600); border: 1px solid var(--ink-200); }
.prow__chip--entry { background: var(--verified-050); color: var(--verified-700); border-color: var(--verified-100); }
.prow__chip--routine { background: var(--ochre-050); color: var(--ochre-700); border-color: var(--ochre-100); }
.psearch { display: flex; align-items: center; gap: 6px; background: var(--ink-050); border: 1px solid var(--ink-200); border-radius: var(--r-md); padding: 6px 9px; font-size: 9.5px; color: var(--ink-500); margin-bottom: 7px; }
.psearch svg { width: 11px; height: 11px; }
.ptabs { display: flex; border-top: 1px solid var(--ink-200); background: var(--white); margin: 8px -13px 0; padding: 8px 18px 14px; justify-content: space-around; }
.ptab { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 8px; font-weight: 600; color: var(--ink-500); }
.ptab svg { width: 17px; height: 17px; }
.ptab--on { color: var(--ochre-600); }
.phone__badge {
  position: absolute; top: 6px; right: -6px; z-index: 10;
  background: var(--ink-900); color: #fff; font-family: var(--font-display);
  font-weight: 700; font-size: 12.5px; padding: 10px 14px; transform: rotate(4deg);
  box-shadow: var(--shadow-lg); display: inline-flex; align-items: center; gap: 7px;
}
.phone__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--good-500); flex: none; }

/* ----- Section scaffolding ---------------------------------------------------- */
.section { padding: clamp(52px, 8vw, 88px) 0; border-bottom: 1px solid var(--ink-200); }
.section__head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 44px); }
.section__head h2 { font-weight: 800; font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -0.02em; line-height: 1.1; margin: 14px 0 0; }
.section__head h2 em { font-style: normal; color: var(--ochre-500); }
.section__head p { font-size: 16px; color: var(--ink-600); margin-top: 12px; }
.section__head .ticks { margin-top: 18px; }
.section--tint { background: var(--paper-2); }

/* ----- Forms strip -------------------------------------------------------------- */
.forms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.form-card {
  background: var(--white); border: 1px solid var(--ink-200); border-radius: var(--r-xl);
  padding: 22px; display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard);
}
.form-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.form-card__ic { width: 40px; height: 40px; border-radius: var(--r-md); background: var(--ink-900); color: #fff; display: flex; align-items: center; justify-content: center; }
.form-card__ic svg { width: 20px; height: 20px; }
.form-card h3 { font-weight: 700; font-size: 17px; letter-spacing: -0.01em; margin-top: 4px; }
.form-card .form-card__form { font-family: var(--font-mono); font-size: 11px; color: var(--ink-500); letter-spacing: 0.06em; }
.form-card p { font-size: 13.5px; line-height: 1.55; color: var(--ink-600); }
.chip {
  display: inline-flex; align-items: center; gap: 5px; width: max-content; margin-top: auto;
  font-weight: 600; font-size: 11px; padding: 4px 10px; border-radius: var(--r-pill);
}
.chip svg { width: 11px; height: 11px; flex: none; }
.chip--verified { background: var(--verified-050); color: var(--verified-700); border: 1px solid var(--verified-100); }
.chip--ochre { background: var(--ochre-050); color: var(--ochre-700); border: 1px solid var(--ochre-100); }

/* ----- How it works ---------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step__num { font-family: var(--font-mono); font-size: 12px; color: var(--ochre-600); letter-spacing: 0.1em; }
.step h3 { font-weight: 700; font-size: 19px; letter-spacing: -0.01em; margin: 10px 0 8px; }
.step p { font-size: 14px; line-height: 1.6; color: var(--ink-700); }
.step__rail { height: 2px; background: var(--ink-200); margin: 14px 0 0; position: relative; }
.step__rail::before { content: ''; position: absolute; inset: 0; right: 60%; background: var(--ochre-500); }

/* ----- Feature grid ------------------------------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature {
  background: var(--white); border: 1px solid var(--ink-200); border-radius: var(--r-xl);
  padding: 24px; display: flex; flex-direction: column; gap: 10px;
}
.feature__ic { width: 38px; height: 38px; border-radius: var(--r-md); background: var(--ochre-050); color: var(--ochre-600); display: flex; align-items: center; justify-content: center; }
.feature__ic svg { width: 19px; height: 19px; }
.feature h3 { font-weight: 700; font-size: 17px; letter-spacing: -0.01em; margin-top: 2px; }
.feature p { font-size: 13.5px; line-height: 1.6; color: var(--ink-600); }

/* ----- Privacy band (premium dark) ------------------------------------------------------ */
.privacy-band { background: var(--pro-ink); border-bottom: none; position: relative; overflow: hidden; }
.privacy-band::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--pro-gilt), transparent); opacity: 0.7; }
.privacy-band .wrap { position: relative; }
.privacy-band__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.privacy-band h2 { color: #F4F4F5; font-weight: 800; font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -0.02em; line-height: 1.12; margin: 14px 0 0; }
.privacy-band h2 em { font-style: normal; color: var(--pro-gilt); }
.privacy-band p { color: var(--ink-300); font-size: 15.5px; line-height: 1.65; margin-top: 16px; max-width: 520px; }
.privacy-band a.privacy-band__link { color: var(--pro-gilt); font-weight: 600; font-size: 14px; display: inline-block; margin-top: 20px; }
.privacy-band .eyebrow { color: var(--pro-gilt); }
.privacy-stats { display: flex; flex-direction: column; gap: 12px; }
.pstat { background: var(--pro-panel); border: 1px solid var(--pro-hairline); border-radius: var(--r-xl); padding: 18px 22px; display: flex; align-items: baseline; gap: 14px; }
.pstat__n { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: #F4F4F5; min-width: 58px; }
.pstat__t { font-size: 13px; line-height: 1.5; color: var(--ink-400); }

/* ----- Pricing ------------------------------------------------------------------------ */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 860px; margin: 0 auto; }
.plan { background: var(--white); border: 1px solid var(--ink-200); border-radius: var(--r-2xl); padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.plan--pro { background: var(--pro-ink); border-color: var(--pro-ink); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.plan--pro::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--pro-gilt), transparent); opacity: 0.8; }
.plan__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-500); }
.plan--pro .plan__tag { color: var(--ochre-400); }
.plan__price { display: flex; align-items: baseline; gap: 8px; }
.plan__price .a { font-family: var(--font-display); font-weight: 800; font-size: 46px; letter-spacing: -0.02em; color: var(--ink-900); }
.plan--pro .plan__price .a { color: #F4F4F5; }
.plan__price .p { font-size: 14px; color: var(--ink-500); }
.plan__alt { font-size: 13px; color: var(--ink-600); margin-top: -8px; }
.plan--pro .plan__alt { color: var(--ink-400); }
.plan__alt strong { color: var(--good-500); font-weight: 700; }
.plan ul { margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; list-style: none; }
.plan li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; line-height: 1.45; color: var(--ink-700); }
.plan--pro li { color: var(--ink-200); }
.plan li svg { width: 16px; height: 16px; color: var(--good-500); flex: none; margin-top: 2px; }
.plan .btn { margin-top: auto; }
.plan__fine { font-size: 11px; color: var(--ink-500); line-height: 1.55; }

/* ----- FAQ ----------------------------------------------------------------------------- */
/* A narrow centred column — head and list share the same left edge, so the
   section doesn't hug the left of the wide wrap with dead space on the right. */
.faq { max-width: 760px; margin-inline: auto; }
#faq .section__head { max-width: 760px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--ink-200); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-display); font-weight: 600; font-size: 16.5px; color: var(--ink-900);
  padding: 18px 2px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--font-body); font-weight: 400; font-size: 22px; color: var(--ochre-600); flex: none; transition: transform var(--dur-base) var(--ease-standard); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { font-size: 14.5px; line-height: 1.65; color: var(--ink-700); padding: 0 2px 20px; max-width: 680px; }

/* ----- Final CTA ------------------------------------------------------------------------ */
.cta { text-align: center; padding: clamp(60px, 9vw, 104px) 0; border-bottom: 1px solid var(--ink-200); }
.cta h2 { font-weight: 800; font-size: clamp(30px, 4.4vw, 48px); letter-spacing: -0.025em; line-height: 1.08; }
.cta h2 em { font-style: normal; color: var(--ochre-500); }
.cta p { font-size: 15px; color: var(--ink-600); margin: 16px 0 26px; }
.cta .btn { margin: 0 auto; }

/* ----- Footer ----------------------------------------------------------------------------- */
.footer { padding: 36px 0 44px; }
.footer__in { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer .lockup img { height: 17px; }
.footer .lockup .lockup__pro { font-size: 11px; padding: 2px 5px; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a { font-size: 13px; color: var(--ink-600); }
.footer__links a:hover { color: var(--ink-900); }
.footer__note { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-500); }

/* ==========================================================================
   Legal pages (privacy / terms)
   ========================================================================== */
.legal { max-width: 720px; margin: 0 auto; padding: clamp(40px, 6vw, 64px) 24px 72px; }
.legal h1 { font-weight: 800; font-size: clamp(30px, 4.5vw, 40px); letter-spacing: -0.02em; line-height: 1.1; }
.legal .updated { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-500); margin: 12px 0 28px; }
.legal h2 { font-weight: 700; font-size: 20px; letter-spacing: -0.01em; margin: 36px 0 10px; }
.legal p, .legal li { font-size: 15px; line-height: 1.7; color: var(--ink-700); }
.legal p + p { margin-top: 10px; }
.legal ul { padding-left: 22px; margin: 8px 0; }
.legal li { margin: 6px 0; }
.legal .card {
  background: var(--white); border: 1px solid var(--ink-200); border-radius: var(--r-xl);
  padding: 20px 24px; margin: 16px 0; box-shadow: var(--shadow-sm);
}
.legal .card ul { margin: 0; }
.legal .card li { margin: 8px 0; }

/* ==========================================================================
   Hero motion — a 30s pure-CSS loop that follows the REAL workflow (no JS,
   no video): A home (tap "Start with a property") → A2 pick the property →
   B condition grid ticks itself, tap into an item → B2 comment types itself,
   "Take photos" → P multi-shot camera (3 shots, count, thumbnails, Done) →
   B3 photos attached on the item, "Review & generate" → C the real Form 1a
   page + real photo-appendix page → share (Save to Files / Email PDF).
   Scene A is the resting state; prefers-reduced-motion disables everything
   and the mock falls back to the static home screen.
   ========================================================================== */
.phone__screen { isolation: isolate; }
.scene { position: absolute; inset: 0; padding: 46px 13px 0; opacity: 0; animation: 30s linear infinite; }
.scene--a { position: relative; opacity: 1; animation-name: sceneA; }
.scene--a2 { animation-name: sceneA2; }
.scene--b { animation-name: sceneB; }
.scene--b2 { animation-name: sceneB2; }
.scene--p { animation-name: sceneP; padding: 0; }
.scene--b3 { animation-name: sceneB3; }
.scene--c { animation-name: sceneC; }
@keyframes sceneA  { 0%, 8% { opacity: 1; } 11%, 94% { opacity: 0; } 97%, 100% { opacity: 1; } }
@keyframes sceneA2 { 0%, 11% { opacity: 0; } 14%, 19% { opacity: 1; } 22%, 100% { opacity: 0; } }
@keyframes sceneB  { 0%, 22% { opacity: 0; } 25%, 34% { opacity: 1; } 37%, 100% { opacity: 0; } }
@keyframes sceneB2 { 0%, 37% { opacity: 0; } 40%, 49% { opacity: 1; } 52%, 100% { opacity: 0; } }
@keyframes sceneP  { 0%, 52% { opacity: 0; } 55%, 66% { opacity: 1; } 69%, 100% { opacity: 0; } }
@keyframes sceneB3 { 0%, 69% { opacity: 0; } 72%, 78% { opacity: 1; } 81%, 100% { opacity: 0; } }
@keyframes sceneC  { 0%, 81% { opacity: 0; } 84%, 94% { opacity: 1; } 97%, 100% { opacity: 0; } }

/* Tap ripples (one per tapping scene) */
.tapdot, .tapdot2, .tapdot3 {
  position: absolute; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(210,106,0,0.28); border: 2px solid rgba(210,106,0,0.5);
  transform: scale(0); opacity: 0; pointer-events: none;
}
.tapdot  { right: 40px; top: 200px; animation: tapA 30s linear infinite; }
.tapdot2 { right: 36px; top: 132px; animation: tapA2 30s linear infinite; }
.tapdot3 { right: 130px; top: 116px; animation: tapA3 30s linear infinite; }
@keyframes tapA  { 0%, 4% { transform: scale(0); opacity: 0; } 5.5% { transform: scale(0.6); opacity: 1; } 7.5% { transform: scale(1.15); opacity: 0; } 100% { opacity: 0; } }
@keyframes tapA2 { 0%, 13.5% { transform: scale(0); opacity: 0; } 15% { transform: scale(0.6); opacity: 1; } 17% { transform: scale(1.15); opacity: 0; } 100% { opacity: 0; } }
@keyframes tapA3 { 0%, 30.5% { transform: scale(0); opacity: 0; } 32% { transform: scale(0.6); opacity: 1; } 34% { transform: scale(1.15); opacity: 0; } 100% { opacity: 0; } }
.scene--a .pcard--hi { animation: cardHi 30s linear infinite; }
@keyframes cardHi { 0%, 4.5% { box-shadow: none; } 6%, 9% { box-shadow: 0 0 0 2px var(--ochre-500); } 11%, 100% { box-shadow: none; } }
.scene--a2 .pcard--hi2 { animation: cardHi2 30s linear infinite; }
@keyframes cardHi2 { 0%, 14% { box-shadow: none; } 15.5%, 20% { box-shadow: 0 0 0 2px var(--ochre-500); } 22%, 100% { box-shadow: none; } }
.scene--b .mrow--hi { animation: rowHi 30s linear infinite; }
@keyframes rowHi { 0%, 30.5% { background: transparent; } 32%, 35% { background: var(--ochre-050); } 37%, 100% { background: transparent; } }

/* B: condition rows tick on */
.mrow { display: flex; align-items: center; gap: 8px; padding: 9px 4px; border-bottom: 1px solid var(--ink-100); border-radius: 6px; }
.mrow__nm { font-size: 10.5px; font-weight: 600; color: var(--ink-900); }
.mrow__dots { margin-left: auto; display: flex; gap: 5px; }
.mdot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-200); }
.mrow__tick { width: 15px; height: 15px; border-radius: 50%; background: var(--good-500); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 800; transform: scale(0); }
.scene--b .r1 .mdot { animation: dotOn 30s linear infinite; }
.scene--b .r2 .mdot { animation: dotOn2 30s linear infinite; }
.scene--b .r3 .mdot { animation: dotOn3 30s linear infinite; }
.scene--b .r1 .mdot:nth-child(2) { animation-delay: 0.25s; } .scene--b .r1 .mdot:nth-child(3) { animation-delay: 0.5s; }
.scene--b .r2 .mdot:nth-child(2) { animation-delay: 0.25s; } .scene--b .r2 .mdot:nth-child(3) { animation-delay: 0.5s; }
.scene--b .r3 .mdot:nth-child(2) { animation-delay: 0.25s; } .scene--b .r3 .mdot:nth-child(3) { animation-delay: 0.5s; }
@keyframes dotOn  { 0%, 25% { background: var(--ink-200); } 26.5%, 100% { background: var(--good-500); } }
@keyframes dotOn2 { 0%, 27% { background: var(--ink-200); } 28.5%, 100% { background: var(--good-500); } }
@keyframes dotOn3 { 0%, 29% { background: var(--ink-200); } 30.5%, 100% { background: var(--good-500); } }
.scene--b .r1 .mrow__tick { animation: tickPop1 30s linear infinite; }
.scene--b .r2 .mrow__tick { animation: tickPop2 30s linear infinite; }
.scene--b .r3 .mrow__tick { animation: tickPop3 30s linear infinite; }
@keyframes tickPop1 { 0%, 26% { transform: scale(0); } 27.3% { transform: scale(1.25); } 28.3%, 100% { transform: scale(1); } }
@keyframes tickPop2 { 0%, 28% { transform: scale(0); } 29.3% { transform: scale(1.25); } 30.3%, 100% { transform: scale(1); } }
@keyframes tickPop3 { 0%, 30% { transform: scale(0); } 31.3% { transform: scale(1.25); } 32.3%, 100% { transform: scale(1); } }

/* B2: inside the item — comment types itself, then Take photos */
.ittl { display: flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--ink-900); margin-bottom: 8px; }
.ittl .bk { font-weight: 600; font-size: 18px; color: var(--ochre-600); }
.ichips { display: flex; gap: 6px; margin-bottom: 10px; }
.ichip {
  font-size: 8.5px; font-weight: 700; color: var(--good-500);
  background: #EDF7F0; border: 1px solid rgba(47,158,90,0.3);
  border-radius: var(--r-pill); padding: 3px 8px;
}
.icmt { background: var(--white); border: 1px solid var(--ink-200); border-radius: var(--r-lg); padding: 10px 11px; min-height: 44px; }
.icmt__txt { display: block; overflow: hidden; white-space: nowrap; font-size: 10.5px; color: var(--ink-800); width: 0; animation: typeIn 30s steps(30, end) infinite; }
@keyframes typeIn { 0%, 41% { width: 0; } 46.5%, 100% { width: 100%; } }
.mgen {
  background: var(--ochre-500); color: #fff; text-align: center; font-weight: 700;
  font-size: 12px; border-radius: var(--r-lg); padding: 11px 0;
}
.scene--b2 .mgen { animation: photoBtn 30s linear infinite; }
@keyframes photoBtn { 0%, 47.5% { transform: scale(1); background: var(--ochre-500); } 49% { transform: scale(0.96); background: var(--ochre-600); } 50.5%, 100% { transform: scale(1); background: var(--ochre-500); } }

/* P: multi-shot camera — three shots for one item */
.cam { position: absolute; inset: 0; background: #101013; display: flex; flex-direction: column; }
.cam__chip {
  margin: 50px auto 0; width: max-content; max-width: 86%;
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.1em; color: #E4E4E7;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-pill); padding: 4px 10px;
}
.cam__view { position: relative; flex: 1; margin: 10px 12px; border-radius: 14px; overflow: hidden;
  background: linear-gradient(180deg, #3A3733 0%, #4A4540 55%, #2E2B28 56%, #3B3833 100%); }
.cam__door {
  position: absolute; left: 18%; top: 12%; width: 34%; height: 76%;
  background: linear-gradient(180deg, #57504A, #46403B); border-radius: 6px 6px 0 0;
  border: 2px solid rgba(0,0,0,0.25);
}
.cam__door::after { content: ''; position: absolute; right: 8%; top: 47%; width: 7px; height: 7px; border-radius: 50%; background: #C9BFB4; }
.cam__skirt { position: absolute; left: 0; right: 0; bottom: 11%; height: 5px; background: rgba(255,255,255,0.14); }
.cam__focus {
  position: absolute; left: 24%; top: 30%; width: 74px; height: 74px;
  border: 2px solid #FFD60A; border-radius: 6px; opacity: 0; transform: scale(1.2);
  animation: camFocus 30s linear infinite;
}
@keyframes camFocus { 0%, 53.5% { opacity: 0; transform: scale(1.2); } 54.5% { opacity: 1; transform: scale(1); } 56.5% { opacity: 1; } 58%, 100% { opacity: 0; } }
.cam__flash { position: absolute; inset: 0; background: #fff; opacity: 0; animation: camFlash 30s linear infinite; }
@keyframes camFlash {
  0%, 55.6% { opacity: 0; } 56% { opacity: 0.85; } 56.6% { opacity: 0; }
  58.6% { opacity: 0; } 59% { opacity: 0.85; } 59.6% { opacity: 0; }
  61.6% { opacity: 0; } 62% { opacity: 0.85; } 62.6% { opacity: 0; }
  100% { opacity: 0; }
}
.cam__count {
  position: absolute; top: 8px; right: 8px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--ochre-500); color: #fff; font-weight: 800; font-size: 12px;
  display: flex; align-items: center; justify-content: center; opacity: 0;
  animation: camCount 30s linear infinite;
}
@keyframes camCount { 0%, 55.8% { opacity: 0; transform: scale(0.6); } 56.4%, 100% { opacity: 1; transform: scale(1); } }
.cam__count span { position: absolute; opacity: 0; }
.cam__count .c1 { animation: cnt1 30s linear infinite; }
.cam__count .c2 { animation: cnt2 30s linear infinite; }
.cam__count .c3 { animation: cnt3 30s linear infinite; }
@keyframes cnt1 { 0%, 55.8% { opacity: 0; } 56.4%, 58.8% { opacity: 1; } 59.4%, 100% { opacity: 0; } }
@keyframes cnt2 { 0%, 58.8% { opacity: 0; } 59.4%, 61.8% { opacity: 1; } 62.4%, 100% { opacity: 0; } }
@keyframes cnt3 { 0%, 61.8% { opacity: 0; } 62.4%, 100% { opacity: 1; } }
.cam__thumbs { display: flex; gap: 7px; padding: 0 14px; height: 40px; align-items: center; }
.cam__thumb {
  width: 30px; height: 38px; border-radius: 5px; border: 1px solid rgba(255,255,255,0.25);
  background: linear-gradient(180deg, #6B6259 0%, #57504A 78%, rgba(255,255,255,0.35) 79%, rgba(255,255,255,0.18) 100%);
  transform: scale(0);
}
.cam__thumb.t1 { animation: thumb1 30s linear infinite; }
.cam__thumb.t2 { animation: thumb2 30s linear infinite; }
.cam__thumb.t3 { animation: thumb3 30s linear infinite; }
@keyframes thumb1 { 0%, 56.4% { transform: scale(0); } 57.2% { transform: scale(1.12); } 57.9%, 100% { transform: scale(1); } }
@keyframes thumb2 { 0%, 59.4% { transform: scale(0); } 60.2% { transform: scale(1.12); } 60.9%, 100% { transform: scale(1); } }
@keyframes thumb3 { 0%, 62.4% { transform: scale(0); } 63.2% { transform: scale(1.12); } 63.9%, 100% { transform: scale(1); } }
.cam__bar { display: flex; align-items: center; justify-content: space-between; padding: 4px 16px 18px; }
.cam__meta { font-family: var(--font-mono); font-size: 7.5px; letter-spacing: 0.06em; color: #A3A3A9; width: 74px; opacity: 0; animation: camMeta 30s linear infinite; }
@keyframes camMeta { 0%, 64% { opacity: 0; } 65.5%, 100% { opacity: 1; } }
.cam__shutter {
  width: 46px; height: 46px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.35); animation: camShutter 30s linear infinite;
}
@keyframes camShutter {
  0%, 55.6% { transform: scale(1); } 56% { transform: scale(0.85); } 56.8% { transform: scale(1); }
  58.6% { transform: scale(1); } 59% { transform: scale(0.85); } 59.8% { transform: scale(1); }
  61.6% { transform: scale(1); } 62% { transform: scale(0.85); } 62.8% { transform: scale(1); }
  100% { transform: scale(1); }
}
.cam__done { width: 74px; text-align: right; font-weight: 700; font-size: 10.5px; color: #fff; opacity: 0; animation: camDone 30s linear infinite; }
.cam__done b { background: var(--ochre-500); border-radius: var(--r-pill); padding: 6px 10px; font-weight: 700; }
@keyframes camDone { 0%, 64% { opacity: 0; transform: translateY(4px); } 65.5%, 100% { opacity: 1; transform: translateY(0); } }

/* B3: back on the item — photos attached, then Review & generate */
.att { display: flex; gap: 6px; margin: 8px 2px 6px; }
.att__ph {
  width: 34px; height: 42px; border-radius: 5px; border: 1px solid var(--ink-200);
  background: linear-gradient(180deg, #6B6259 0%, #57504A 74%, rgba(255,255,255,0.75) 75%, rgba(255,255,255,0.55) 100%);
  transform: scale(0);
}
.scene--b3 .att__ph.a1 { animation: attPop1 30s linear infinite; }
.scene--b3 .att__ph.a2 { animation: attPop2 30s linear infinite; }
.scene--b3 .att__ph.a3 { animation: attPop3 30s linear infinite; }
@keyframes attPop1 { 0%, 72.4% { transform: scale(0); } 73.2% { transform: scale(1.1); } 73.9%, 100% { transform: scale(1); } }
@keyframes attPop2 { 0%, 73.1% { transform: scale(0); } 73.9% { transform: scale(1.1); } 74.6%, 100% { transform: scale(1); } }
@keyframes attPop3 { 0%, 73.8% { transform: scale(0); } 74.6% { transform: scale(1.1); } 75.3%, 100% { transform: scale(1); } }
.att__meta { font-family: var(--font-mono); font-size: 7.5px; letter-spacing: 0.06em; color: var(--ink-500); margin: 0 2px 8px; opacity: 0; }
.scene--b3 .att__meta { animation: attMeta 30s linear infinite; }
@keyframes attMeta { 0%, 74.6% { opacity: 0; } 75.6%, 100% { opacity: 1; } }
.mready { display: flex; align-items: center; gap: 6px; font-size: 9.5px; font-weight: 600; color: var(--good-500); margin: 10px 2px 8px; opacity: 0; }
.scene--b3 .mready { animation: readyIn 30s linear infinite; }
@keyframes readyIn { 0%, 75.6% { opacity: 0; transform: translateY(4px); } 76.6%, 100% { opacity: 1; transform: translateY(0); } }
.scene--b3 .mgen { animation: genPulse 30s linear infinite; }
@keyframes genPulse { 0%, 77% { transform: scale(1); background: var(--ochre-500); } 78.4% { transform: scale(0.96); background: var(--ochre-600); } 79.8%, 100% { transform: scale(1); background: var(--ochre-500); } }

/* C: the real generated pages — Form 1a (items recorded) + photo appendix */
.mpage {
  position: absolute; left: 14px; right: 14px; top: 92px;
  background: #fff; border: 1px solid var(--ink-200); border-radius: 10px;
  box-shadow: 0 14px 40px rgba(11,11,12,0.18); padding: 9px 9px 10px;
  transform: translateY(190%);
}
.scene--c .mpage--entry { animation: pageUp 30s linear infinite; }
@keyframes pageUp { 0%, 84% { transform: translateY(190%); } 86.5%, 100% { transform: translateY(0); } }
.mpage--apx { z-index: 2; }
.scene--c .mpage--apx { animation: pageUp2 30s linear infinite; }
@keyframes pageUp2 { 0%, 88.5% { transform: translateY(190%); } 91%, 100% { transform: translateY(0); } }
.mpage__img { display: block; width: 100%; height: auto; border: 1px solid var(--ink-100); border-radius: 4px; background: #fff; }
.mpage__meta { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-top: 8px; }
.mpage__tag { font-family: var(--font-mono); font-size: 7.5px; letter-spacing: 0.1em; color: var(--ink-500); }
.mshare2 { position: absolute; right: 16px; bottom: 16px; z-index: 3; display: flex; gap: 6px; opacity: 0; }
.scene--c .mshare2 { animation: shareIn 30s linear infinite; }
@keyframes shareIn { 0%, 92% { opacity: 0; transform: translateY(4px); } 93.5%, 100% { opacity: 1; transform: translateY(0); } }
.mshare2 span {
  font-weight: 700; font-size: 9px; border-radius: var(--r-pill); padding: 6px 11px; white-space: nowrap;
  background: var(--white); color: var(--ink-900); border: 1px solid var(--ink-300); box-shadow: var(--shadow-md);
}
.mshare2 span.pri { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }

/* ==========================================================================
   Umbrella-site components (ezyinsp.com only)
   ========================================================================== */

/* ----- App icons (real shipped icons, iOS squircle radius) ------------------ */
.appicon {
  width: 56px; height: 56px; border-radius: 22.37%;
  border: 1px solid var(--ink-200); box-shadow: var(--shadow-sm);
  flex: none; display: block;
}
.section--pro .appicon, .plan--pro .appicon { border-color: var(--pro-hairline-2); }

/* ----- Product identity row (icon + lockup: whose territory is this?) ------- */
.pid { display: flex; align-items: center; gap: 14px; }
.plockup { display: inline-flex; align-items: flex-end; gap: 8px; }
.plockup img { height: 19px; width: auto; display: inline-block; }
.plockup__chip {
  font-family: var(--font-display); font-weight: 800; font-size: 12px; line-height: 1;
  background: var(--ochre-500); color: #fff; padding: 3px 6px 2px;
  letter-spacing: 0.01em; transform: translateY(-1px);
}
.plockup__chip--free {
  background: transparent; color: var(--ink-700);
  border: 1px solid var(--ink-400); padding: 2px 6px 1px;
}

/* ----- Pro territory: premium ink-900 band (the Pro signature surface) ------ */
.section--pro { background: var(--pro-ink); border-bottom: none; position: relative; }
.section--pro::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--pro-gilt), transparent); opacity: 0.7; }
.section--pro .section__head h2 { color: #F4F4F5; }
.section--pro .section__head h2 em { color: var(--pro-gilt); }
.section--pro .section__head p { color: var(--ink-400); }
.section--pro .form-card { background: var(--pro-panel); border-color: var(--pro-hairline); box-shadow: none; }
.section--pro .form-card:hover { box-shadow: var(--shadow-lg); border-color: var(--pro-hairline-2); }
.section--pro .form-card h3 { color: #F4F4F5; }
.section--pro .form-card p { color: var(--ink-400); }
.section--pro .form-card .form-card__form { color: var(--ink-500); }
.section--pro .form-card__ic { background: rgba(255,255,255,0.07); border: 1px solid var(--pro-hairline); color: var(--pro-gilt); }
.section--pro .chip--verified { background: rgba(44,106,176,0.20); color: #9CC4EE; border-color: rgba(94,146,200,0.38); }
.section--pro .chip--ochre { background: rgba(210,106,0,0.16); color: var(--ochre-400); border-color: rgba(232,131,32,0.35); }
.section--pro .sec-cta { border-top-color: var(--pro-hairline); }
.section--pro .sec-cta .ticks span { color: var(--ink-400); }
.section--pro .btn--ghost { background: transparent; color: #F4F4F5; border-color: var(--pro-hairline-2); }
.section--pro .btn--ghost:hover { background: var(--pro-panel); color: #fff; border-color: rgba(255,255,255,0.3); }

/* ----- Mono tick rows (shared meta vocabulary, same as hero__meta) --------- */
.ticks { display: flex; gap: 8px 20px; flex-wrap: wrap; }
.ticks span {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-600);
}
.ticks span::before { content: '✓'; color: var(--good-500); font-weight: 700; }

/* ----- Section footer CTA row (badge + link + hairline) --------------------- */
.sec-cta {
  display: flex; align-items: center; gap: 14px 22px; flex-wrap: wrap;
  margin-top: clamp(30px, 5vw, 48px); padding-top: clamp(22px, 3vw, 30px);
  border-top: 1px solid var(--ink-200);
}
.sec-cta .ticks { margin-left: auto; }

/* ----- Real-screenshot device frames (staggered trio) ----------------------- */
.shots {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.5vw, 40px); max-width: 920px; margin: 0 auto;
  padding: clamp(10px, 2vw, 22px) 0 6px;
}
.device { display: flex; flex-direction: column; gap: 14px; }
.device__frame {
  background: var(--ink-900); border-radius: 38px; padding: 8px;
  box-shadow: var(--shadow-xl);
}
.device__img { border-radius: 30px; width: 100%; height: auto; aspect-ratio: 1206 / 2622; object-fit: cover; background: var(--ink-100); }
.device__cap { font-size: 13px; line-height: 1.5; color: var(--ink-600); text-align: center; padding: 0 10px; }
.device:nth-child(1) { transform: rotate(-1.5deg) translateY(10px); }
.device:nth-child(2) { transform: translateY(-8px); }
.device:nth-child(3) { transform: rotate(1.5deg) translateY(10px); }
.device:nth-child(2) .device__frame { box-shadow: var(--shadow-xl), 0 32px 64px rgba(11,11,12,0.12); }

/* ----- Free territory: mirrored (right-aligned) head + CTA ------------------- */
.section--free .section__head { margin-left: auto; text-align: right; }
.section--free .section__head .pid { justify-content: flex-end; }
.section--free .section__head .ticks { justify-content: flex-end; }
.sec-cta--rev { flex-direction: row-reverse; }
.sec-cta--rev .ticks { margin-left: 0; margin-right: auto; }

/* ----- Free vs Pro comparison table ------------------------------------------ */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare {
  width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0;
  background: var(--white); border: 1px solid var(--ink-200); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.compare col.c-label { width: 34%; }
.compare thead th { padding: 20px 18px 16px; vertical-align: bottom; }
.compare thead th.col-app { text-align: center; border-bottom: 1px solid var(--ink-200); }
.compare thead th:first-child { border-bottom: 1px solid var(--ink-200); }
.compare thead th.col-pro { background: var(--pro-ink); position: relative; border-bottom: none; }
.compare thead th.col-pro::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--pro-gilt), transparent); opacity: 0.8; }
.compare__app { display: inline-flex; flex-direction: column; align-items: center; gap: 9px; }
.compare__app .appicon { width: 44px; height: 44px; }
.compare__app .compare__nm { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink-900); line-height: 1; }
.compare__app .compare__sub { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-500); }
.col-pro .compare__nm { color: #F4F4F5; }
.col-pro .compare__sub { color: var(--ochre-400); }
.compare tbody th {
  text-align: left; font-weight: 600; font-size: 13.5px; color: var(--ink-800);
  padding: 13px 18px 13px 20px; border-top: 1px solid var(--ink-100); background: var(--white);
}
.compare tbody tr:first-child th, .compare tbody tr:first-child td { border-top: none; }
.compare tbody th small { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 10.5px; letter-spacing: 0.06em; color: var(--ink-500); margin-top: 2px; }
.compare tbody td {
  text-align: center; font-size: 13.5px; line-height: 1.45; color: var(--ink-700);
  padding: 13px 16px; border-top: 1px solid var(--ink-100); border-left: 1px solid var(--ink-100);
}
.compare td .yes { color: var(--good-500); font-weight: 700; font-size: 15px; }
.compare td.no { color: var(--ink-300); font-size: 15px; }
.compare td small { display: block; font-size: 11.5px; color: var(--ink-500); margin-top: 3px; }
.compare td.td-pro { background: var(--paper); }
.compare tfoot td { padding: 18px 16px 20px; border-top: 1px solid var(--ink-200); border-left: 1px solid var(--ink-100); text-align: center; }
.compare tfoot td:first-child { border-left: none; }
.compare tfoot .btn { padding: 10px 18px; font-size: 14px; }

/* ----- Plans footnote --------------------------------------------------------- */
.plans-note {
  text-align: center; font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-500); margin-top: 26px;
}
.duo__app .appicon { width: 44px; height: 44px; border-color: var(--pro-hairline-2); }

/* ----- Reviews: rating row + cards ------------------------------------------ */
.rating { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 18px; }
.rating .stars svg { width: 20px; height: 20px; }
.rating__score { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; }
.rating__meta { font-family: var(--font-mono); font-size: 12px; color: var(--ink-500); }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 900px; }
.review-card {
  background: var(--white); border: 1px solid var(--ink-200); border-radius: var(--r-xl);
  padding: 26px; display: flex; flex-direction: column; gap: 12px; box-shadow: var(--shadow-sm);
}
.stars { display: inline-flex; gap: 3px; color: var(--ochre-500); }
.stars svg { width: 15px; height: 15px; }
.review-card h3 { font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.review-card p { font-size: 14.5px; line-height: 1.65; color: var(--ink-700); }
.review-card .review-card__by { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-500); margin-top: auto; padding-top: 14px; border-top: 1px solid var(--ink-100); }

/* ----- Dark CTA band with both apps ----------------------------------------- */
.cta--dark { background: var(--pro-ink); border-bottom: none; position: relative; }
.cta--dark::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--pro-gilt), transparent); opacity: 0.7; }
.cta--dark h2 { color: #F4F4F5; }
.cta--dark h2 em { color: var(--pro-gilt); }
.cta--dark p { color: var(--ink-300); }
.duo { display: flex; justify-content: center; gap: clamp(24px, 5vw, 56px); flex-wrap: wrap; }
.duo__app { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.duo__label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-400); }
.duo .btn--ghost { background: transparent; color: #F4F4F5; border-color: var(--pro-hairline-2); }
.duo .btn--ghost:hover { background: var(--pro-panel); color: #fff; border-color: rgba(255,255,255,0.3); }

/* ----- Support hub ------------------------------------------------------------ */
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 860px; }
.support-card {
  background: var(--white); border: 1px solid var(--ink-200); border-radius: var(--r-xl);
  padding: 28px; display: flex; flex-direction: column; gap: 12px;
}
.support-card .appicon { width: 44px; height: 44px; margin-bottom: 2px; }
.support-card h2 { font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.support-card p { font-size: 14px; line-height: 1.6; color: var(--ink-600); }
.support-card .btn { margin-top: 10px; width: max-content; }
.support-card .support-card__addr { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-500); }
.support-aside { max-width: 860px; margin-top: 28px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.support-note {
  background: var(--paper-2); border: 1px solid var(--ink-200); border-radius: var(--r-xl);
  padding: 20px 24px; font-size: 13.5px; line-height: 1.6; color: var(--ink-700);
}
.support-note h3 { font-weight: 700; font-size: 14.5px; margin-bottom: 6px; }

/* ----- Scope note (free-app banner on help/legal) ------------------------------ */
.scope-note {
  display: block; width: max-content; max-width: 100%;
  background: var(--ochre-050); border: 1px solid var(--ochre-100); border-radius: var(--r-md);
  padding: 9px 14px; font-size: 13px; line-height: 1.5; color: var(--ink-700);
}
.scope-note a { font-weight: 600; }

/* ----- Docs (user guide) -------------------------------------------------------- */
.doc { max-width: 780px; margin: 0 auto; padding: clamp(36px, 5vw, 56px) 24px 80px; }
.doc-switch {
  display: inline-flex; gap: 4px; padding: 4px;
  background: var(--white); border: 1px solid var(--ink-200); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); margin-top: 24px;
}
.doc-switch a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px 8px 10px; border-radius: var(--r-md);
  font-weight: 600; font-size: 14px; color: var(--ink-600);
  transition: background var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard);
}
.doc-switch a:hover { color: var(--ink-900); background: var(--ink-050); text-decoration: none; }
.doc-switch a .appicon { width: 26px; height: 26px; box-shadow: none; }
.doc-switch a.on { background: var(--ink-900); color: #fff; }
.doc-switch a.on:hover { background: var(--ink-800); color: #fff; }
.doc-switch a.on .appicon { border-color: var(--pro-hairline-2); }
.doc__head h1 { font-weight: 800; font-size: clamp(30px, 4.5vw, 42px); letter-spacing: -0.02em; line-height: 1.08; margin: 14px 0 0; }
.doc__head .doc__lede { font-size: 16px; line-height: 1.65; color: var(--ink-600); margin-top: 14px; max-width: 640px; }
.doc__head .scope-note { margin-top: 18px; }
.toc {
  background: var(--white); border: 1px solid var(--ink-200); border-radius: var(--r-xl);
  padding: 22px 26px; margin: 30px 0 10px; box-shadow: var(--shadow-sm);
}
.toc h2 { font-family: var(--font-mono); font-weight: 500; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 12px; }
.toc ol { columns: 2; column-gap: 32px; margin: 0; padding: 0 0 0 22px; }
.toc li { font-size: 14px; line-height: 1.5; margin: 5px 0; break-inside: avoid; color: var(--ink-500); }
.toc a { color: var(--ink-800); font-weight: 500; }
.toc a:hover { color: var(--ochre-600); }
.doc section { border-bottom: 1px solid var(--ink-200); padding: 30px 0 26px; }
.doc section:last-of-type { border-bottom: none; }
.doc h2 { font-weight: 800; font-size: 25px; letter-spacing: -0.015em; line-height: 1.15; }
.doc h2 .n { color: var(--ochre-500); margin-right: 6px; }
.doc h3 { font-weight: 700; font-size: 18px; letter-spacing: -0.01em; margin: 24px 0 8px; }
.doc h4 { font-family: var(--font-body); font-weight: 600; font-size: 15px; margin: 18px 0 6px; color: var(--ink-900); }
.doc p, .doc li { font-size: 15px; line-height: 1.7; color: var(--ink-700); }
.doc p { margin-top: 10px; }
.doc ul, .doc ol { padding-left: 24px; margin: 10px 0; }
.doc li { margin: 5px 0; }
.doc li > ul { margin: 4px 0; }
.doc strong { color: var(--ink-900); }

/* Callouts: tips / good practice / caution / data-loss warnings */
.callout { border-left: 3px solid var(--ink-300); border-radius: var(--r-sm); padding: 12px 16px; margin: 14px 0; font-size: 14px; line-height: 1.65; color: var(--ink-700); background: var(--ink-050); }
.callout p, .callout li { font-size: 14px; }
.callout p:first-child { margin-top: 0; }
.callout--tip { border-left-color: var(--ochre-500); background: var(--ochre-050); }
.callout--good { border-left-color: var(--good-500); background: #EDF7F0; }
.callout--warn { border-left-color: var(--ochre-400); background: var(--ochre-050); }
.callout--danger { border-left-color: var(--poor-500); background: #FBEEEA; }
.callout b, .callout strong { color: var(--ink-900); }

/* Q&A blocks inside the docs FAQ */
.qa { border-left: 3px solid var(--ink-200); padding: 2px 0 2px 16px; margin: 16px 0; }
.qa .qa__q { font-weight: 600; font-size: 15px; color: var(--ink-900); }
.qa p { margin-top: 6px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .forms-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__right { padding: 20px 0 0; }
  .phone { transform: rotate(0deg); width: 280px; }
  .privacy-band__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav__links { display: none; }
  .plans { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; max-width: 300px; }
  .shots .device, .shots .device:nth-child(n) { transform: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .support-aside { grid-template-columns: 1fr; }
  .sec-cta .ticks { margin-left: 0; }
}
@media (max-width: 560px) {
  .forms-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .footer__in { flex-direction: column; align-items: flex-start; }
  .toc ol { columns: 1; }
  .duo { flex-direction: column; align-items: center; }
  /* stacked layout: the desktop left/right mirror stops meaning anything */
  .section--free .section__head { text-align: left; }
  .section--free .section__head .pid,
  .section--free .section__head .ticks { justify-content: flex-start; }
}
