/* free-snapshot.css — Phase 4 (v1.80)
 * Intermediate context page between the marketing front and the actual scan.
 * Same visual language as checkout.css so the two pages feel like a system,
 * but framing is "evaluation context" not "Step 1 of 2 · Verify tenant."
 *
 * Goal: a prospect who clicked Free Snapshot lands here, understands what
 * will happen (scan scope, sign-in mechanics, data handling) BEFORE the
 * Microsoft sign-in popup opens — no surprise. The page has exactly one
 * forward action: "Start my Free Snapshot."
 */

:root {
  --bg: #04101c;
  --panel: rgba(15,31,58,0.55);
  --ink: #fff;
  --ink-2: #C7D5E0;
  --muted: #8AA1B3;
  --muted-2: #6E8294;
  --border: rgba(120,170,220,0.18);
  --accent: #4cc9f0;
  --gold: #E4B53D;
  --err: #FF6B72;
  --ok: #5BD17E;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: radial-gradient(circle at top, #0a1a2e 0%, var(--bg) 65%);
  color: var(--ink); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px; line-height: 1.6;
  min-height: 100vh; display: flex; justify-content: center; align-items: flex-start;
  padding: 40px 20px;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: 100%; max-width: 720px; }

.card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 18px; padding: 36px 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

.brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.brand img { width: 38px; height: 38px; border-radius: 8px; object-fit: contain; }
.brand-text { font-size: 22px; font-weight: 800; letter-spacing: 0.01em; }
.brand-text span { color: var(--accent); }
.fallback-hidden { display: none !important; }

/* (v1.81) Eyebrow pill removed and replaced by the top Start button.
   .eyebrow rule kept here harmless in case other pages reuse the styling. */
.eyebrow {
  display: inline-block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: var(--gold); padding: 6px 12px; margin: 6px 0 14px;
  border-radius: 999px; border: 1px solid rgba(228,181,61,0.45);
  background: rgba(228,181,61,0.06);
}

/* Top Start block — first thing the prospect sees after the brand. Sits
   above the headline so the action is the page's opening statement. The
   tagline below the button reinforces "free" and signals clickability. */
.start-block-top { margin: 4px 0 28px; }
.start-block-top .start-tagline {
  margin-top: 12px; font-size: 13.5px; color: var(--ink-2);
  text-align: center; letter-spacing: 0.01em;
}
.start-block-top .start-tagline strong {
  color: var(--gold); border-bottom: 1px dotted rgba(228,181,61,0.55);
  padding-bottom: 1px; font-weight: 700;
}

h1 { font-size: 28px; font-weight: 800; margin: 0 0 14px; line-height: 1.25; }
.lede { font-size: 16px; color: var(--ink-2); margin: 0 0 26px; line-height: 1.55; }
.lede strong { color: var(--ink); }

.block { margin: 0 0 26px; padding: 18px 20px; border-radius: 12px;
  background: rgba(8,18,28,0.45); border: 1px solid var(--border);
}
.block h2 { font-size: 15px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--ink-2); margin: 0 0 12px;
}
.block-lede { font-size: 14.5px; color: var(--ink-2); margin: 0 0 12px; line-height: 1.55; }
.block-lede strong { color: var(--ink); }

.domain-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 18px;
  font-size: 14px;
}
.domain-grid li { display: flex; align-items: center; gap: 9px; color: var(--ink-2); }
.domain-grid .dot { width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); display: inline-block; flex-shrink: 0;
}

.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { padding: 9px 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.6;
  border-top: 1px solid rgba(120,170,220,0.10);
}
.info-list li:first-child { border-top: 0; padding-top: 4px; }
.info-list li strong { color: var(--ink); }

.start-block { margin: 32px 0 18px; text-align: center; }
.btn-start {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  font-family: inherit; font-size: 16px; font-weight: 800; letter-spacing: 0.01em;
  padding: 16px 28px; border-radius: 12px; cursor: pointer;
  background: var(--gold); color: #1a1206; border: 0;
  width: 100%; max-width: 540px;
  transition: filter 0.15s ease, transform 0.05s ease;
  line-height: 1.3;
}
.btn-start:hover:not(:disabled) { filter: brightness(1.08); }
.btn-start:active { transform: translateY(1px); }
.btn-start:disabled { opacity: 0.55; cursor: not-allowed; }

.start-fine { font-size: 12.5px; color: var(--muted); margin-top: 14px; line-height: 1.6; }
.start-fine a { color: var(--accent); border-bottom: 1px dotted var(--accent); }
.start-fine a:hover { text-decoration: none; color: var(--gold); border-color: var(--gold); }

.msg { margin-top: 14px; font-size: 13.5px; min-height: 1.25rem; }
.msg.err { color: var(--err); }
.msg.ok { color: var(--ok); }

.back-link { margin-top: 18px; font-size: 13px; }
.back-link a { color: var(--muted); border-bottom: 1px dotted var(--muted); }
.back-link a:hover { color: var(--accent); border-color: var(--accent); }

.foot {
  margin-top: 1.8rem; padding-top: 1.2rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted-2); flex-wrap: wrap; gap: 0.5rem;
}
.foot a { color: var(--muted); border-bottom: 1px dotted var(--muted); }
.foot a:hover { color: var(--accent); border-color: var(--accent); }

@media (max-width: 520px) {
  .card { padding: 26px 22px; }
  h1 { font-size: 22px; }
  .domain-grid { grid-template-columns: 1fr; }
  .btn-start { font-size: 14.5px; padding: 14px 18px; }
}
