/* ==========================================================================
   Account Finder — marketing site styles
   Self-contained. No external fonts, CDNs, or remote images
   (real product screenshots are bundled locally in img/).
   ========================================================================== */

:root {
  --color-accent: #7f1d1d;
  --color-accent-dark: #5c1414;
  --color-accent-tint: #f7ecec;
  --color-bg: #fbfaf8;
  --color-surface: #ffffff;
  --color-text: #1e2430;
  --color-text-muted: #5b6472;
  --color-text-faint: #838d99;
  --color-border: #e5e2dd;
  --color-border-strong: #d4d0c9;
  --shadow-sm: 0 1px 2px rgba(30, 36, 48, 0.05);
  --shadow-md: 0 6px 20px rgba(30, 36, 48, 0.07);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto,
    Helvetica, Arial, sans-serif;
  --max-width: 1100px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1em;
  color: var(--color-text);
}

.lede {
  font-size: 1.15rem;
  color: var(--color-text-muted);
}

ul {
  padding-left: 1.25em;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 72px 0;
}

section.tight {
  padding: 48px 0;
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.section-heading p {
  color: var(--color-text-muted);
}

/* ---------------------------------- Header ------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 248, 0.92);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: none;
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--color-text);
}

.logo:hover {
  text-decoration: none;
  color: var(--color-text);
}

.logo svg {
  flex: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--color-text-muted);
  font-weight: 550;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--color-text);
  text-decoration: none;
}

.nav-links a[aria-current="page"] {
  color: var(--color-accent);
}

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

/* ---------------------------------- Buttons ------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.06s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  color: #fff;
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border-strong);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: transparent;
  padding-left: 6px;
  padding-right: 6px;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.88rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ----------------------------------- Hero -------------------------------- */

.hero {
  padding: 88px 0 64px;
}

.hero-inner {
  max-width: 760px;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-tint);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero p.lede {
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-note {
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--color-text-faint);
}

/* --------------------------------- Cards --------------------------------- */

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

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

.step-card,
.feature-card,
.mode-card,
.vertical-card {
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-accent-tint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-accent);
}

.card h3 {
  margin-bottom: 10px;
}

.card p:last-child {
  margin-bottom: 0;
}

.card p {
  color: var(--color-text-muted);
}

/* ------------------------------- Alt sections ----------------------------- */

.section-alt {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.tier-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-tint);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.mode-card ul {
  margin-top: 14px;
  color: var(--color-text-muted);
  padding-left: 1.1em;
}

.mode-card li {
  margin-bottom: 8px;
}

.vertical-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.vertical-chip {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 550;
  color: var(--color-text);
}

.vertical-chip strong {
  color: var(--color-accent);
}

.callout {
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}

.callout p:last-child {
  margin-bottom: 0;
}

/* ---------------------------------- Table --------------------------------- */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 560px;
}

th,
td {
  text-align: left;
  padding: 12px 18px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
}

th {
  background: var(--color-bg);
  font-weight: 650;
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}

tr:last-child td {
  border-bottom: none;
}

/* -------------------------------- Pricing --------------------------------- */

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 48px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.switch {
  position: relative;
  width: 52px;
  height: 28px;
  border-radius: 999px;
  background: var(--color-border-strong);
  border: none;
  cursor: pointer;
  padding: 0;
  flex: none;
}

.switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease;
}

.switch.is-on {
  background: var(--color-accent);
}

.switch.is-on .switch-thumb {
  transform: translateX(24px);
}

.badge-save {
  display: inline-block;
  background: var(--color-accent-tint);
  color: var(--color-accent);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}

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

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

.plan-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.plan-card.is-featured {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.plan-name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.plan-tagline {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: 18px;
  min-height: 2.6em;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
}

.price-period {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.plan-subprice {
  color: var(--color-text-faint);
  font-size: 0.82rem;
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.plan-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
}

.plan-features li:first-child {
  border-top: none;
}

.plan-features svg {
  flex: none;
  margin-top: 3px;
  color: var(--color-accent);
}

/* ----------------------------------- FAQ ----------------------------------- */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-accent);
  flex: none;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item .faq-body {
  padding: 0 22px 20px;
  color: var(--color-text-muted);
}

.faq-item .faq-body p:last-child {
  margin-bottom: 0;
}

/* --------------------------------- Forms ----------------------------------- */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  color: var(--color-text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--color-text-faint);
  margin-top: 8px;
}

.contact-fallback {
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  margin-top: 28px;
}

.contact-fallback a {
  font-weight: 700;
}

/* -------------------------------- Numbered list ---------------------------- */

.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.included-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.included-list svg {
  flex: none;
  margin-top: 2px;
  color: var(--color-accent);
}

.included-list strong {
  display: block;
  margin-bottom: 2px;
}

.included-list span {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

/* ---------------------------------- CTA band -------------------------------- */

.cta-band {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .cta-actions {
  justify-content: center;
  margin-top: 24px;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--color-accent);
}

.cta-band .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cta-band .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta-band .btn-secondary:hover {
  border-color: #fff;
  color: #fff;
}

/* ---------------------------------- Footer ---------------------------------- */

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 32px 0 48px;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}

.footer-inner p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-text-faint);
}

.footer-inner a {
  color: var(--color-text-muted);
}

.footer-tag {
  font-size: 0.82rem !important;
}

/* --------------------------------- Utilities --------------------------------- */

.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.stack-tight > * + * {
  margin-top: 10px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 860px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.lang-badge {
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--color-text-muted);
  background: var(--color-surface);
}

.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Courier New", monospace;
  font-size: 0.9em;
  background: var(--color-accent-tint);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--color-accent-dark);
}

/* ==========================================================================
   Product mockups — illustrative app views, CSS-only animation.
   Entrance animations run once per page view; only gentle pulses loop.
   All motion is disabled (final state shown) under prefers-reduced-motion.
   ========================================================================== */

.mockup-frame {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  text-align: left;
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border);
  background: #f6f4f1;
}

.mockup-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-border-strong);
}

.mockup-url {
  margin-left: 10px;
  font-size: 0.72rem;
  color: var(--color-text-faint);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 3px 12px;
}

.mockup-body {
  display: grid;
  grid-template-columns: 250px 1fr;
}

.mockup-side {
  border-right: 1px solid var(--color-border);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--color-bg);
}

.mockup-label {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-faint);
  font-weight: 650;
}

.mockup-toggle {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.mockup-chip {
  font-size: 0.74rem;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--color-surface);
  white-space: nowrap;
}

.mockup-chip.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.mockup-input {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  padding: 8px 10px;
  font-size: 0.85rem;
  min-height: 37px;
}

.mockup-type {
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  animation: mockType 1.4s steps(10, end) 0.6s forwards;
}

.mockup-type::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  vertical-align: text-bottom;
  margin-left: 2px;
  background: var(--color-accent);
  animation: mockCaret 1s steps(1) infinite;
}

.mockup-btn {
  display: inline-block;
  text-align: center;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 650;
  padding: 9px 12px;
  animation: mockPress 0.35s ease 2.3s;
}

.mockup-scan {
  height: 3px;
  border-radius: 999px;
  background: var(--color-accent-tint);
  overflow: hidden;
}

.mockup-scan i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--color-accent);
  animation: mockScan 0.9s ease-in-out 2.5s forwards;
}

.mockup-results {
  padding: 6px 16px 16px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mockup-results-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 2px 6px;
  opacity: 0;
  animation: mockRise 0.4s ease 3.1s forwards;
}

.mockup-results-title {
  font-size: 0.8rem;
  font-weight: 650;
}

.mockup-results-sub {
  font-size: 0.7rem;
  color: var(--color-text-faint);
}

.mockup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2px 12px;
  padding: 9px 2px;
  border-top: 1px solid var(--color-border);
  opacity: 0;
  transform: translateY(8px);
  animation: mockRise 0.45s ease forwards;
}

.mockup-row:nth-of-type(1) { animation-delay: 3.3s; }
.mockup-row:nth-of-type(2) { animation-delay: 3.55s; }
.mockup-row:nth-of-type(3) { animation-delay: 3.8s; }
.mockup-row:nth-of-type(4) { animation-delay: 4.05s; }
.mockup-row:nth-of-type(5) { animation-delay: 4.3s; }

.mockup-name {
  font-size: 0.86rem;
  font-weight: 650;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mockup-meta {
  grid-row: 2;
  font-size: 0.71rem;
  color: var(--color-text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mockup-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 1px 6px;
  margin-right: 6px;
  color: var(--color-text-muted);
  background: var(--color-bg);
  vertical-align: 1px;
}

.mockup-score {
  grid-row: 1 / span 2;
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-score-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  min-width: 2.4em;
  text-align: right;
}

.mockup-bar {
  width: 84px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-accent-tint);
  overflow: hidden;
}

.mockup-bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--color-accent);
  width: 0;
  animation: mockFill 0.7s ease forwards;
}

.mockup-row:nth-of-type(1) .mockup-bar i { animation-delay: 3.5s; }
.mockup-row:nth-of-type(2) .mockup-bar i { animation-delay: 3.75s; }
.mockup-row:nth-of-type(3) .mockup-bar i { animation-delay: 4s; }
.mockup-row:nth-of-type(4) .mockup-bar i { animation-delay: 4.25s; }
.mockup-row:nth-of-type(5) .mockup-bar i { animation-delay: 4.5s; }

/* Mini map */
.mockup-map {
  position: relative;
  height: 130px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background:
    linear-gradient(115deg, transparent 42%, rgba(127, 29, 29, 0.05) 42%, rgba(127, 29, 29, 0.05) 45%, transparent 45%),
    linear-gradient(25deg, transparent 60%, rgba(30, 36, 48, 0.045) 60%, rgba(30, 36, 48, 0.045) 62%, transparent 62%),
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(30, 36, 48, 0.05) 23px 24px),
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(30, 36, 48, 0.05) 23px 24px),
    #f3f1ec;
}

.mockup-map.tall { height: 190px; }

.mockup-pin {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50% 50% 50% 0;
  background: var(--color-accent);
  transform: rotate(-45deg) translateY(-6px);
  opacity: 0;
  animation: mockDrop 0.35s ease forwards;
  box-shadow: 0 1px 2px rgba(30, 36, 48, 0.3);
}

.mockup-pin::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #fff;
}

.mockup-pin.p1 { animation-delay: 3.5s; }
.mockup-pin.p2 { animation-delay: 3.75s; }
.mockup-pin.p3 { animation-delay: 4s; }
.mockup-pin.p4 { animation-delay: 4.25s; }
.mockup-pin.p5 { animation-delay: 4.5s; }

.mockup-pin.best::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(127, 29, 29, 0.35);
  animation: mockPulse 2.4s ease-out 5s infinite;
}

/* Fit-rationale card variant */
.mockup-fitrow {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 12px;
  background: var(--color-bg);
}

.mockup-fitrow .mockup-row {
  border-top: none;
  padding: 0;
  animation-delay: 0.4s;
}

.mockup-fitrow .mockup-bar i { animation-delay: 0.7s; }

/* Note banner (control states etc.) */
.mockup-note {
  font-size: 0.72rem;
  color: var(--color-accent-dark);
  background: var(--color-accent-tint);
  border: 1px solid rgba(127, 29, 29, 0.18);
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  margin-top: 10px;
  opacity: 0;
  animation: mockRise 0.45s ease 4.7s forwards;
}

/* Per-industry pitch line on the vertical cards */
.vertical-pitch {
  font-weight: 650;
  color: var(--color-accent-dark);
  margin: 0 0 0.6em;
}

.vertical-card ul {
  margin: 0;
  padding-left: 1.1em;
}

.vertical-card li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.45em;
}

/* Real product screenshots (bundled locally in img/) */
.mockup-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.shot-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background: var(--color-surface);
}

.shot-card img {
  display: block;
  width: 100%;
  height: auto;
}

.mockup-caption {
  text-align: center;
  font-size: 0.74rem;
  color: var(--color-text-faint);
  margin: 12px auto 0;
}

.mockup-below {
  margin-top: 40px;
}

@media (max-width: 820px) {
  .mockup-body { grid-template-columns: 1fr; }
  .mockup-side {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  .mockup-bar { width: 60px; }
}

@keyframes mockType { to { width: 9.6ch; } }
@keyframes mockCaret { 50% { opacity: 0; } }
@keyframes mockPress { 50% { transform: scale(0.96); } }
@keyframes mockScan { to { width: 100%; } }
@keyframes mockRise { to { opacity: 1; transform: none; } }
@keyframes mockFill { to { width: var(--w, 80%); } }
@keyframes mockDrop { to { opacity: 1; transform: rotate(-45deg) translateY(0); } }
@keyframes mockPulse {
  0% { transform: scale(0.6); opacity: 1; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .mockup-type { width: 9.6ch; animation: none; }
  .mockup-type::after { display: none; }
  .mockup-btn, .mockup-pin.best::before { animation: none; }
  .mockup-scan i { width: 100%; animation: none; }
  .mockup-results-head, .mockup-row, .mockup-note {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .mockup-bar i { width: var(--w, 80%); animation: none; }
  .mockup-pin { opacity: 1; transform: rotate(-45deg); animation: none; }
}
