/* US Realtor / Agent landing — narrative page styles
 * Sits on top of site.css + tokens. Page-specific only.
 */

/* ============ HERO ============ */
.ar-hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 88% -10%, rgba(97,206,112,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at -5% 105%, rgba(86,112,132,0.08) 0%, transparent 55%),
    linear-gradient(180deg, #FDFDFE 0%, var(--off-white-40) 100%);
}
.ar-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(54,62,72,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54,62,72,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at 60% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 30%, #000 0%, transparent 75%);
  pointer-events: none;
}
.ar-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 72px;
  align-items: center;
}
.ar-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-sm);
}
.ar-hero-eyebrow .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green-100);
  box-shadow: 0 0 0 0 rgba(97,206,112,0.6);
  animation: ar-pulse 2.4s infinite;
}
@keyframes ar-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(97,206,112,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(97,206,112,0); }
  100% { box-shadow: 0 0 0 0 rgba(97,206,112,0); }
}
.ar-h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin-top: 28px;
  max-width: 720px;
}
.ar-h1 em {
  font-style: normal;
  color: var(--anthracite-100);
  background-image: linear-gradient(180deg, transparent 64%, rgba(97,206,112,0.30) 64%, rgba(97,206,112,0.30) 90%, transparent 90%);
  padding: 0 2px;
}
.ar-hero-sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.35;
  color: var(--color-text);
  margin-top: 28px;
  max-width: 580px;
  letter-spacing: -0.005em;
}
.ar-hero-sub strong {
  color: var(--anthracite-100);
  font-weight: 600;
  position: relative;
  white-space: nowrap;
}
.ar-hero-sub strong::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--green-100);
}
.ar-hero-support {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-top: 24px;
  max-width: 540px;
}
.ar-hero-ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.ar-hero-meta {
  display: flex; gap: 22px; flex-wrap: wrap;
  margin-top: 28px;
  font-size: 13px; color: var(--color-text-subtle);
}
.ar-hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.ar-hero-meta svg { width: 14px; height: 14px; stroke: var(--green-100); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ---- Hero collage ---- */
.ar-hero-art {
  position: relative;
  height: 540px;
}
/* Main "desk" panel — what AI is doing */
.ar-art-desk {
  position: absolute;
  top: 18px; right: 0;
  width: 380px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 18px;
  transform: rotate(-2deg);
  z-index: 1;
}
.ar-art-desk-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--color-border);
  margin-bottom: 12px;
}
.ar-art-desk-head .ai-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 8px;
  background: var(--off-white-100);
  border-radius: 6px;
  color: var(--anthracite-80);
  letter-spacing: 0.04em;
}
.ar-art-desk-head .ai-tag::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: conic-gradient(from 0deg, #87b1ff, #b487ff, #ff87c1, #87b1ff);
}
.ar-art-task {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  font-size: 13px;
  color: var(--color-text);
}
.ar-art-task + .ar-art-task { border-top: 1px solid var(--off-white-100); }
.ar-art-task .strike {
  flex: 1; text-decoration: line-through; color: var(--color-text-subtle);
}
.ar-art-task .ai-done {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6F7BFF;
  background: #EEF0FF;
  padding: 3px 7px;
  border-radius: 5px;
}
.ar-art-task .ai-checkbox {
  width: 16px; height: 16px;
  border-radius: 4px;
  background: #6F7BFF;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ar-art-task .ai-checkbox svg { width: 10px; height: 10px; stroke: #fff; fill: none; stroke-width: 3; }

/* Mobile property capture — what the agent does */
.ar-art-phone {
  position: absolute;
  bottom: 0; left: 8px;
  width: 248px;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  border: 1px solid var(--color-border);
  transform: rotate(-3deg);
  z-index: 3;
}
.ar-art-phone-screen {
  background: var(--anthracite-100);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.ar-art-phone-photo {
  /* Phone-mock screen showing a property photo with a location-pin overlay
   * (.ar-art-phone-pin sits on top of this). The vertical dark-tint overlay
   * keeps the .ar-art-phone-pin visible against the photo. */
  height: 200px;
  background-color: #2a2a2a;
  background-image:
    linear-gradient(180deg, rgba(54,62,72,0) 60%, rgba(54,62,72,0.65) 100%),
    url('../assets/inspection-photos/exterior-house-front.webp');
  background-size: cover, cover;
  background-position: center, center;
  position: relative;
  overflow: hidden;
}
.ar-art-phone-photo::before {
  /* simulated kitchen / room outline */
  content: "";
  position: absolute; inset: 18px 22px 36px 22px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 100%);
}
.ar-art-phone-photo::after {
  content: "";
  position: absolute; left: 50%; top: 38%; width: 60px; height: 80px;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 4px;
  transform: translateX(-50%);
}
.ar-art-phone-pin {
  position: absolute;
  top: 64px; right: 28px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 5px rgba(97,206,112,0.25), 0 0 0 11px rgba(97,206,112,0.10);
  animation: ar-pin-pulse 2s infinite;
}
.ar-art-phone-pin svg { width: 12px; height: 12px; stroke: var(--anthracite-100); fill: none; stroke-width: 2.5; }
@keyframes ar-pin-pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(97,206,112,0.25), 0 0 0 11px rgba(97,206,112,0.10); }
  50%      { box-shadow: 0 0 0 8px rgba(97,206,112,0.30), 0 0 0 16px rgba(97,206,112,0.04); }
}
.ar-art-phone-meta {
  padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.ar-art-phone-meta .l {
  font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.ar-art-phone-meta .v {
  font-size: 14px; font-weight: 600; color: #fff;
}
.ar-art-phone-meta .row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.ar-art-phone-meta .row .badge-pass {
  background: rgba(97,206,112,0.20);
  color: var(--green-100);
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

/* Floating "ground-truth" tag */
.ar-art-tag {
  position: absolute;
  z-index: 4;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  display: flex; align-items: center; gap: 10px;
  max-width: 240px;
}
.ar-art-tag .ic {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--green-20);
  color: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ar-art-tag .ic svg { width: 16px; height: 16px; stroke: #1E7A2B; fill: none; stroke-width: 2; }
.ar-art-tag .t { font-weight: 600; color: var(--color-text); font-size: 13px; }
.ar-art-tag .d { color: var(--color-text-subtle); font-size: 11px; margin-top: 2px; }

.ar-art-tag-1 { top: 8px; left: -8px; transform: rotate(-2deg); z-index: 4; }
.ar-art-tag-2 { bottom: 64px; right: 24px; transform: rotate(3deg); z-index: 4; }

/* ============ SECTION CHROME ============ */
.ar-section { padding: 112px 0; }
.ar-section-tight { padding: 80px 0; }
.ar-section-alt { background: var(--off-white-60); }
.ar-section-dark { background: var(--gradient-deep); color: #fff; }
.ar-section-dark h2,
.ar-section-dark h3,
.ar-section-dark h4 { color: #fff; }
.ar-section-dark p { color: rgba(255,255,255,0.72); }

.ar-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--anthracite-100);
}
.ar-eyebrow .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--anthracite-100);
  font-size: 12px;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0;
}
.ar-section-dark .ar-eyebrow { color: #fff; }
.ar-section-dark .ar-eyebrow .num { border-color: rgba(255,255,255,0.6); color: #fff; }

.ar-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--color-text);
  margin-top: 24px;
  max-width: 920px;
}
.ar-section-dark .ar-h2 { color: #fff; }
.ar-h2 em {
  font-style: normal;
  color: var(--green-100);
}
.ar-h2 em.under {
  color: inherit;
  background-image: linear-gradient(180deg, transparent 66%, rgba(97,206,112,0.32) 66%, rgba(97,206,112,0.32) 92%, transparent 92%);
  padding: 0 2px;
}

.ar-lead {
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 720px;
}
.ar-section-dark .ar-lead { color: rgba(255,255,255,0.72); }

/* ============ SECTION 1 — PRESSURE ============ */
.ar-pressure {
  position: relative;
}
.ar-pressure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.ar-pressure-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.ar-pressure-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--anthracite-100) 0%, transparent 100%);
}
.ar-pressure-card .ic {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--off-white-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.ar-pressure-card .ic svg { width: 22px; height: 22px; stroke: var(--anthracite-100); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ar-pressure-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: 12px;
}
.ar-pressure-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text-muted);
}
.ar-pressure-card .stat-strip {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  display: flex; align-items: baseline; gap: 8px;
}
.ar-pressure-card .stat-strip .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--anthracite-100);
  letter-spacing: -0.01em;
}
.ar-pressure-card .stat-strip .l {
  font-size: 12px;
  color: var(--color-text-subtle);
}

.ar-pressure-quote {
  margin-top: 56px;
  border-top: 1px solid var(--color-border);
  padding-top: 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
.ar-pressure-quote .label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  max-width: 220px;
  line-height: 1.5;
}
.ar-pressure-quote blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 38px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--color-text);
  position: relative;
  padding-left: 32px;
  border-left: 3px solid var(--green-100);
}

/* ============ SECTION 2 — REFRAME (REPLACE / CAN'T REPLACE) ============ */
.ar-reframe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}
.ar-reframe-col {
  padding: 44px 40px 48px;
  position: relative;
}
.ar-reframe-col + .ar-reframe-col {
  border-left: 1px solid var(--color-border);
}
.ar-reframe-col-replace {
  background:
    linear-gradient(180deg, #FAFBFD 0%, #F4F6FA 100%);
}
.ar-reframe-col-keep {
  background:
    linear-gradient(180deg, #F0F8F1 0%, #E6F2E8 100%);
  position: relative;
}
.ar-reframe-col-keep::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(97,206,112,0.10) 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
}
.ar-reframe-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(54,62,72,0.06);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--anthracite-80);
}
.ar-reframe-col-keep .ar-reframe-tag {
  background: rgba(97,206,112,0.18);
  color: #1E5727;
}
.ar-reframe-tag svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.2; }

.ar-reframe-h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--color-text);
  margin: 18px 0 28px;
  position: relative;
}
.ar-reframe-list {
  list-style: none;
  position: relative;
}
.ar-reframe-list li {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  padding: 14px 0;
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid rgba(54,62,72,0.08);
  color: var(--color-text);
}
.ar-reframe-list li:last-child { border-bottom: none; }
.ar-reframe-col-replace .ar-reframe-list li {
  color: var(--anthracite-80);
}
.ar-reframe-col-replace .ar-reframe-list li .strike {
  position: relative;
  flex: 1;
}
.ar-reframe-col-replace .ar-reframe-list li .strike::after {
  content: "";
  position: absolute; left: -2px; right: -2px; top: 54%;
  height: 1.5px;
  background: var(--anthracite-60);
  transform-origin: left;
}
.ar-reframe-list .mark {
  width: 26px; height: 26px;
  border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ar-reframe-col-replace .mark {
  background: var(--off-white-100);
  color: var(--anthracite-60);
}
.ar-reframe-col-keep .mark {
  background: var(--green-100);
  color: var(--anthracite-100);
}
.ar-reframe-list .mark svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.ar-reframe-foot {
  margin-top: 32px;
  font-size: 13px;
  color: var(--color-text-subtle);
  font-style: italic;
}

/* divider arrow between cols */
.ar-reframe-arrow {
  position: absolute;
  left: -22px; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--anthracite-100);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(54,62,72,0.18);
}
.ar-reframe-arrow svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ============ SECTION 3 — PIVOT ============ */
.ar-pivot-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  margin-top: 64px;
}
.ar-pivot-shifts {
  display: grid;
  gap: 14px;
}
.ar-pivot-shift {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.ar-pivot-shift .from {
  text-align: right;
  color: var(--anthracite-60);
  font-size: 17px;
  position: relative;
}
.ar-pivot-shift .from .strike-line {
  position: relative;
}
.ar-pivot-shift .from .strike-line::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 56%;
  height: 1.5px; background: var(--anthracite-60);
}
.ar-pivot-shift .arr {
  width: 40px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green-100);
}
.ar-pivot-shift .arr svg { width: 24px; height: 12px; }
.ar-pivot-shift .to {
  font-size: 19px;
  font-weight: 600;
  color: var(--color-text);
}
.ar-pivot-benefits {
  background: var(--anthracite-100);
  color: #fff;
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.ar-pivot-benefits::before {
  content: "";
  position: absolute; inset: -50% -10% auto auto; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(97,206,112,0.20) 0%, transparent 60%);
  pointer-events: none;
}
.ar-pivot-benefits .pi-kicker { color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.ar-pivot-benefits h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
  position: relative;
}
.ar-pivot-benefits ul { list-style: none; position: relative; }
.ar-pivot-benefits li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 17px;
  font-weight: 500;
}
.ar-pivot-benefits li:first-child { border-top: 1px solid rgba(255,255,255,0.18); }
.ar-pivot-benefits li svg {
  width: 20px; height: 20px; flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--green-100);
  fill: none; stroke-width: 2.4;
  stroke-linecap: round; stroke-linejoin: round;
}
.ar-pivot-benefits li .d {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-top: 4px;
  display: block;
}

/* ============ SECTION 4 — UNLOCK ============ */
.ar-unlock {
  position: relative;
}
.ar-unlock-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  margin-top: 56px;
  align-items: center;
}
.ar-unlock-needs {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: var(--shadow-md);
}
.ar-unlock-needs .pi-kicker { margin-bottom: 18px; }
.ar-unlock-needs ul { list-style: none; }
.ar-unlock-needs li {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.ar-unlock-needs li:last-child { border-bottom: none; }
.ar-unlock-needs li .ai-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 8px;
  background: #EEF0FF;
  color: #4A55D8;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: auto;
  flex-shrink: 0;
}
.ar-unlock-needs li .ai-tag::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: conic-gradient(from 0deg, #87b1ff, #b487ff, #ff87c1, #87b1ff);
}
.ar-unlock-needs li .arrow-down {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 6px;
  background: var(--off-white-100);
  display: inline-flex; align-items: center; justify-content: center;
}
.ar-unlock-needs li .arrow-down svg { width: 12px; height: 12px; stroke: var(--anthracite-80); fill: none; stroke-width: 2; }

.ar-unlock-pull {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--color-text);
  position: relative;
  padding-left: 28px;
  border-left: 3px solid var(--green-100);
}
.ar-unlock-pull strong {
  font-weight: 600;
  background-image: linear-gradient(180deg, transparent 65%, rgba(97,206,112,0.32) 65%, rgba(97,206,112,0.32) 92%, transparent 92%);
}

/* ============ SECTION 5 — AGENT = SENSOR ============ */
.ar-sensor {
  position: relative;
}
.ar-sensor-stage {
  margin-top: 72px;
  position: relative;
}
.ar-sensor-rail {
  position: absolute;
  left: 8%; right: 8%; top: 56px;
  height: 2px;
  background: rgba(255,255,255,0.12);
}
.ar-sensor-rail::after {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--green-100) 0%, var(--green-100) 100%);
  opacity: 0.55;
}
.ar-sensor-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
}
.ar-sensor-step {
  text-align: center;
  position: relative;
}
.ar-sensor-step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--anthracite-100);
  border: 2px solid rgba(255,255,255,0.18);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
}
.ar-sensor-step:nth-child(odd) .num {
  background: var(--green-100);
  color: var(--anthracite-100);
  border-color: rgba(97,206,112,0.35);
  box-shadow: 0 0 0 6px rgba(97,206,112,0.12);
}
.ar-sensor-step .icon {
  position: absolute;
  top: 22px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 22px;
}
.ar-sensor-step .icon svg { width: 22px; height: 22px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ar-sensor-step:nth-child(odd) .icon svg { stroke: var(--anthracite-100); }
.ar-sensor-step:nth-child(even) .icon svg { stroke: #fff; }
.ar-sensor-step .label {
  display: block;
  margin-top: 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #fff;
}
.ar-sensor-step .desc {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
  max-width: 200px;
  margin-left: auto; margin-right: auto;
}
.ar-sensor-step .num.with-icon { color: transparent; }

.ar-sensor-flow {
  position: absolute;
  top: 56px; left: 0; right: 0; height: 2px;
  display: none;
}

.ar-sensor-foot {
  margin-top: 64px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.86);
  max-width: 720px;
  margin-left: auto; margin-right: auto;
  line-height: 1.4;
}
.ar-sensor-foot em {
  color: var(--green-100);
  font-style: normal;
  font-weight: 600;
}

/* ============ SECTION 6 — PRODUCT INTRO (LIGHT) ============ */
.ar-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 64px;
}
.ar-product-list {
  list-style: none;
  margin-top: 28px;
}
.ar-product-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--color-border);
}
.ar-product-list li:last-child { border-bottom: 1px solid var(--color-border); }
.ar-product-list .ic {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--off-white-100);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.ar-product-list .ic svg { width: 18px; height: 18px; stroke: var(--anthracite-100); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ar-product-list .t {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text);
  letter-spacing: -0.005em;
}
.ar-product-list .d {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 4px;
  line-height: 1.55;
}
.ar-product-cta {
  margin-top: 32px;
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* product preview card on the right */
.ar-product-preview {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.ar-product-preview-head {
  background: var(--off-white-60);
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  color: var(--color-text-subtle);
}
.ar-product-preview-head .dots { display: flex; gap: 5px; }
.ar-product-preview-head .dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--color-border-strong); }
.ar-product-preview-body { padding: 24px; }
.ar-product-preview-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 4px;
}
.ar-product-preview-meta {
  font-size: 12px;
  color: var(--color-text-subtle);
  margin-bottom: 16px;
}
.ar-product-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.ar-pp-thumb {
  /* Realtors / sales-agent product-preview: 6 inspection photos from the
   * "18 items captured" mock (template-realtors.php / template-sales-agent-
   * software.php). Order mirrors a typical walk-through. */
  aspect-ratio: 1.1 / 1;
  border-radius: 8px;
  background-color: #d6cfc1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.ar-pp-thumb.t1 { background-image: url('../assets/inspection-photos/kitchen-side-angle.webp'); }
.ar-pp-thumb.t2 { background-image: url('../assets/inspection-photos/bathroom-side-angle.webp'); }
.ar-pp-thumb.t3 { background-image: url('../assets/inspection-photos/bedroom-side-angle.webp'); }
.ar-pp-thumb.t4 { background-image: url('../assets/inspection-photos/living-room-side-angle.webp'); }
.ar-pp-thumb.t5 { background-image: url('../assets/inspection-photos/exterior-house-front.webp'); }
.ar-pp-thumb.t6 { background-image: url('../assets/inspection-photos/hallway-corridor.webp'); }
.ar-pp-thumb::after {
  content: "";
  position: absolute; inset: 18% 22% 22% 22%;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 3px;
}
.ar-pp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
.ar-pp-stat .l {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  font-weight: 600;
  margin-bottom: 4px;
}
.ar-pp-stat .v {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text);
}
.ar-pp-stat .v .acc { color: var(--green-100); font-size: 12px; margin-left: 4px; }

/* ============ SECTION 7 — USE CASES ============ */
.ar-uses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.ar-use-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms var(--ease-standard), box-shadow 220ms var(--ease-standard);
}
.ar-use-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.ar-use-card .num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--anthracite-60);
  letter-spacing: 0.06em;
}
.ar-use-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--color-text);
  margin: 12px 0 12px;
}
.ar-use-card p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 380px;
}
.ar-use-card .ar-use-mock {
  margin-top: 28px;
  border-top: 1px dashed var(--color-border);
  padding-top: 22px;
  font-size: 13px;
  display: flex; flex-direction: column; gap: 8px;
}
.ar-use-card .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0;
  color: var(--color-text-muted);
}
.ar-use-card .row + .row { border-top: 1px solid var(--off-white-100); }
.ar-use-card .row .l { font-weight: 500; color: var(--color-text); }
.ar-use-card .row .pill {
  padding: 3px 9px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
  background: var(--green-20); color: #1E5727;
}
.ar-use-card .row .pill.warn { background: #FCF3DC; color: #8a6515; }
.ar-use-card .row .pill.info { background: #E7EDF7; color: #324A7A; }

/* ============ SECTION 8 — DATA VALUE (DOWNSTREAM) ============ */
.ar-data {
  position: relative;
}
.ar-data-flow {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: center;
}
.ar-data-source {
  background: var(--anthracite-100);
  color: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 0 6px rgba(54,62,72,0.06);
}
.ar-data-source .ic {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: var(--green-100);
  color: var(--anthracite-100);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.ar-data-source .ic svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.ar-data-source .l {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.ar-data-source .v {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.005em;
}

.ar-data-recipients {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
}
.ar-data-recipient {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex; align-items: center; gap: 18px;
  position: relative;
}
.ar-data-recipient .ic {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--off-white-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ar-data-recipient .ic svg { width: 22px; height: 22px; stroke: var(--anthracite-100); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ar-data-recipient .role {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-text);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.ar-data-recipient .desc {
  font-size: 13px;
  color: var(--color-text-subtle);
  line-height: 1.45;
}
.ar-data-recipient::before {
  content: "";
  position: absolute;
  left: -38px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 1px;
  background: var(--color-border-strong);
}
.ar-data-recipient::after {
  content: "";
  position: absolute;
  left: -16px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-100);
}

/* ============ SECTION 9 — PROOF ============ */
.ar-proof {
  background: var(--off-white-60);
}
.ar-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}
.ar-proof-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
}
.ar-proof-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--anthracite-100);
  margin-bottom: 24px;
  /* Reserve a consistent slot so cards with image logos and cards with the
     text fallback line up. Image logos opt out of natural @2x sizing here. */
  min-height: 40px;
  display: flex;
  align-items: center;
}
.ar-proof-logo img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.ar-proof-card blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--color-text);
  flex: 1;
}
.ar-proof-meta {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  color: var(--color-text-subtle);
}
.ar-proof-meta strong { color: var(--color-text); font-weight: 600; display: block; margin-bottom: 2px; }
.ar-proof-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--green-100);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.ar-proof-positioning {
  margin-top: 56px;
  text-align: center;
  font-size: 14px;
  color: var(--color-text-subtle);
  font-style: italic;
}

/* ============ SECTION 10 — POSITIONING CTA ============ */
.ar-finale {
  background: var(--gradient-deep);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ar-finale::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(97,206,112,0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 100%, rgba(86,112,132,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.ar-finale-inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 56px 0;
}
.ar-finale h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin-top: 24px;
}
.ar-finale h2 em {
  font-style: normal;
  color: var(--green-100);
}
.ar-finale-sub {
  margin-top: 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  color: rgba(255,255,255,0.78);
  max-width: 680px;
  margin-left: auto; margin-right: auto;
  letter-spacing: -0.005em;
}
.ar-finale-list {
  list-style: none;
  margin: 36px auto 0;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  max-width: 720px;
}
.ar-finale-list li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}
.ar-finale-list li svg { width: 14px; height: 14px; stroke: var(--green-100); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.ar-finale-ctas {
  margin-top: 44px;
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.ar-finale-fine {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .ar-h1 { font-size: 52px; }
  .ar-h2 { font-size: 42px; }
  .ar-finale h2 { font-size: 44px; }
  .ar-pressure-quote blockquote { font-size: 30px; }
}
@media (max-width: 900px) {
  .ar-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .ar-hero-art { height: 460px; }
  .ar-pressure-grid { grid-template-columns: 1fr; }
  .ar-pressure-quote { grid-template-columns: 1fr; gap: 16px; }
  .ar-reframe { grid-template-columns: 1fr; }
  .ar-reframe-col + .ar-reframe-col { border-left: none; border-top: 1px solid var(--color-border); }
  .ar-pivot-grid { grid-template-columns: 1fr; gap: 32px; }
  .ar-unlock-grid { grid-template-columns: 1fr; gap: 32px; }
  .ar-sensor-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ar-sensor-rail { display: none; }
  .ar-product { grid-template-columns: 1fr; gap: 32px; }
  .ar-uses-grid { grid-template-columns: 1fr; }
  .ar-data-flow { grid-template-columns: 1fr; gap: 32px; }
  .ar-data-recipients { grid-template-columns: 1fr; }
  .ar-data-recipient::before, .ar-data-recipient::after { display: none; }
  .ar-proof-grid { grid-template-columns: 1fr; }
  .ar-h1 { font-size: 40px; }
  .ar-h2 { font-size: 32px; }
  .ar-finale h2 { font-size: 34px; }
}
