/* fatacquire.com — dark navy + emerald brand (matches the original site + @fatacquire) */
:root {
  --bg:        #0e1522;   /* deep navy page background */
  --bg2:       #0b111c;   /* darker (footer / recessed) */
  --panel:     #141d2c;   /* card / panel */
  --panel2:    #1a2434;   /* raised card / hover */
  --line:      #26324a;   /* hairline borders */
  --ink:       #eef2f8;   /* primary text */
  --muted:     #93a1b7;   /* secondary text */
  --faint:     #6b7891;   /* tertiary text */
  --brand:     #34d399;   /* emerald accent (text, links, highlight) */
  --brand2:    #10b981;   /* emerald strong (buttons) */
  --brand-ink: #041a12;   /* text on emerald */
  --ring:      rgba(52,211,153,.35);
  --radius:    16px;
  --maxw:      1000px;
  --shadow:    0 18px 50px rgba(0,0,0,.45);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
/* soft emerald glow behind the hero */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(720px 420px at 50% -8%, rgba(52,211,153,.14), transparent 70%),
    radial-gradient(600px 500px at 92% 8%, rgba(16,185,129,.08), transparent 70%);
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ── brand mark ─────────────────────────────────────────────── */
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; color: var(--brand); letter-spacing: -.01em; }
.brand:hover { text-decoration: none; }
.brand img { width: 30px; height: 30px; border-radius: 9px; }

/* ── header ─────────────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(11,17,28,.72); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
header .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a:not(.btn) { color: var(--muted); font-weight: 500; font-size: 15px; }
.nav-links a:not(.btn):hover { color: var(--ink); text-decoration: none; }

/* ── buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; font: inherit; font-weight: 650; font-size: 15px;
  border-radius: 12px; padding: 12px 20px; cursor: pointer; border: 1px solid transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand2)); color: var(--brand-ink) !important;
  box-shadow: 0 8px 22px rgba(16,185,129,.28); transition: transform .08s ease, box-shadow .2s, background .2s;
  text-decoration: none !important; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(16,185,129,.38); }
.btn:active { transform: translateY(0); }
.btn.ghost { background: transparent; color: var(--ink) !important; border-color: var(--line); box-shadow: none; }
.btn.ghost:hover { border-color: var(--brand); background: rgba(52,211,153,.06); }
.btn.lg { padding: 15px 28px; font-size: 16px; border-radius: 14px; }
.btn.block { width: 100%; justify-content: center; }

/* ── hero ───────────────────────────────────────────────────── */
.hero { padding: 88px 0 44px; text-align: center; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--brand);
  background: rgba(52,211,153,.10); border: 1px solid rgba(52,211,153,.28); padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(36px, 6.4vw, 62px); line-height: 1.03; letter-spacing: -.025em; font-weight: 800; margin: 0 0 18px; }
.hero h1 .grad { color: var(--brand); }
.hero p.sub { font-size: clamp(17px, 2.3vw, 21px); color: var(--muted); max-width: 620px; margin: 0 auto 30px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* trust line under hero */
.trust-strip { margin-top: 30px; color: var(--faint); font-size: 13.5px; }
.trust-strip strong { color: var(--muted); font-weight: 600; }

/* ── integrations row ───────────────────────────────────────── */
.integrations { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--muted);
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px; padding: 9px 15px;
}
.chip .k { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 3px rgba(52,211,153,.15); }

/* ── sections ───────────────────────────────────────────────── */
section { padding: 46px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 30px; }
h2 { font-size: clamp(25px, 3.6vw, 34px); letter-spacing: -.015em; font-weight: 800; margin: 0 0 8px; }
.lead { color: var(--muted); margin: 0; font-size: 16.5px; }

.grid { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.card .num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 9px;
  background: rgba(52,211,153,.12); color: var(--brand); font-weight: 700; font-size: 15px; margin-bottom: 12px; }
.card h3 { margin: 0 0 6px; font-size: 17.5px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

/* ── sample report card ─────────────────────────────────────── */
.report { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; text-align: left; }
.report .r-head { display: flex; align-items: flex-start; gap: 10px; padding: 15px 18px; border-bottom: 1px solid var(--line); background: var(--bg2); }
.report .r-head .r-dino { width: 26px; height: 26px; border-radius: 7px; flex: 0 0 auto; }
.report .r-head .r-htext { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.report .r-head .r-title { font-weight: 700; font-size: 14.5px; }
.report .r-head .r-sub { font-size: 11.5px; color: var(--faint); font-weight: 500; }
.report .r-head .r-conf { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--brand3, #f59e0b); background: rgba(245,158,11,.12); border-radius: 999px; padding: 4px 10px; white-space: nowrap; }
.report .r-body { padding: 6px 18px 16px; }
.r-sec { padding: 13px 0; border-bottom: 1px dashed var(--line); }
.r-sec:last-child { border-bottom: 0; }
.r-label { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); margin-bottom: 9px; }
.r-verdict { font-size: 14.5px; color: var(--ink); line-height: 1.5; }
.r-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px 14px; }
.r-stat { display: flex; flex-direction: column; }
.r-stat b { font-size: 18px; font-weight: 800; letter-spacing: -.01em; }
.r-stat span { font-size: 12px; color: var(--muted); }
.r-val { font-size: 24px; font-weight: 800; color: var(--brand); letter-spacing: -.02em; }
.r-val small { display: block; font-size: 12px; font-weight: 500; color: var(--muted); letter-spacing: 0; margin-top: 2px; }
.r-line { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink); line-height: 1.45; padding: 5px 0; }
.r-line .d { width: 8px; height: 8px; border-radius: 50%; margin-top: 6px; flex: 0 0 auto; }
.r-line.risk .d { background: #fb7185; }
.r-line.warn .d { background: var(--brand3, #f59e0b); }
.r-line.opp .d { background: var(--brand); }
.hero-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; text-align: left; }
.hero-split .hero-copy .cta-row, .hero-split .hero-copy .integrations { justify-content: flex-start; }
.hero-split .pill { margin-top: 0; }
@media (max-width: 860px){ .hero-split { grid-template-columns: 1fr; text-align: center; } .hero-split .hero-copy .cta-row, .hero-split .hero-copy .integrations { justify-content: center; } .report { max-width: 460px; margin: 0 auto; } }

/* ── quote ──────────────────────────────────────────────────── */
.quote { max-width: 720px; margin: 0 auto; text-align: center; font-size: 20px; color: var(--ink); font-style: italic; }
.quote cite { display: block; margin-top: 14px; font-size: 14px; color: var(--faint); font-style: normal; }

/* ── faq ────────────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: 12px; padding: 2px 18px; margin-bottom: 10px; background: var(--panel); }
.faq summary { cursor: pointer; font-weight: 650; padding: 16px 0; list-style: none; font-size: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--brand); font-weight: 700; }
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { color: var(--brand); }
.faq p { color: var(--muted); margin: 0 0 16px; }

/* ── footer ─────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--line); background: var(--bg2); padding: 34px 0; color: var(--faint); font-size: 14px; }
footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
footer .social { display: flex; align-items: center; gap: 12px; }
footer .social a { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 10px; background: var(--panel); border: 1px solid var(--line); color: var(--muted); }
footer .social a:hover { color: var(--brand); border-color: var(--brand); text-decoration: none; }
footer .social svg { width: 17px; height: 17px; fill: currentColor; }
footer a { color: var(--muted); }
footer .foot-cta { color: var(--muted); font-size: 14px; text-align: center; flex: 1 1 auto; }
footer .foot-cta a { color: var(--brand); font-weight: 600; }

/* ── connect flow (page + modal) ────────────────────────────── */
.connect { max-width: 620px; margin: 0 auto; }
.step { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-bottom: 14px; }
.step .step-h { display: flex; align-items: center; gap: 10px; margin: 0 0 4px; }
.step .step-h .n { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 8px; background: rgba(52,211,153,.12); color: var(--brand); font-weight: 700; font-size: 14px; }
.step h3 { margin: 0; font-size: 17px; }
.step .hint { color: var(--muted); font-size: 14px; margin: 6px 0 14px; }
label { display: block; font-weight: 600; font-size: 13.5px; margin: 14px 0 6px; color: var(--ink); }
input[type=text], input[type=email], input[type=url], select, textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 11px; font: inherit; font-size: 15px;
  background: rgba(30,41,59,.5); color: var(--ink); transition: border-color .15s, box-shadow .15s;
}
textarea { resize: vertical; min-height: 76px; line-height: 1.5; }
input::placeholder, textarea::placeholder { color: var(--faint); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--ring); }

/* segmented toggle (my app / evaluating) */
.seg { display: flex; gap: 6px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 4px; }
.seg button { flex: 1; font: inherit; font-weight: 600; font-size: 14.5px; color: var(--muted); background: transparent; border: 0; border-radius: 9px; padding: 10px 12px; cursor: pointer; transition: background .15s, color .15s; }
.seg button.on { background: linear-gradient(135deg, var(--brand), var(--brand2)); color: var(--brand-ink); }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='%2393a1b7'%3E%3Cpath d='M6 8L2 4h8z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }

/* method cards (choose how to share) */
.methods { display: grid; gap: 10px; }
.method { display: block; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; cursor: pointer; background: var(--panel2); transition: border-color .15s, background .15s; }
.method:hover { border-color: var(--brand); }
.method input { position: absolute; opacity: 0; pointer-events: none; }
.method .m-top { display: flex; align-items: center; gap: 10px; }
.method .m-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--line); flex: 0 0 auto; transition: border-color .15s; position: relative; }
.method .m-title { font-weight: 650; font-size: 15px; }
.method .m-tag { margin-left: auto; font-size: 11.5px; font-weight: 700; color: var(--brand); background: rgba(52,211,153,.12); border-radius: 999px; padding: 3px 9px; }
.method .m-desc { color: var(--muted); font-size: 13.5px; margin: 7px 0 0 28px; }
.method.sel { border-color: var(--brand); background: rgba(52,211,153,.07); }
.method.sel .m-radio { border-color: var(--brand); }
.method.sel .m-radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--brand); }
.method-body { margin: 12px 0 2px 28px; }

.copybar { display: flex; align-items: center; gap: 10px; background: rgba(52,211,153,.06); border: 1px dashed rgba(52,211,153,.4); border-radius: 11px; padding: 10px 12px; margin: 4px 0; }
.copybar code { font-size: 15px; color: var(--ink); font-weight: 600; }
.copybar button { margin-left: auto; padding: 8px 14px; font-size: 13.5px; }
ol.steps { margin: 12px 0 0; padding-left: 20px; color: var(--muted); font-size: 14px; }
ol.steps li { margin-bottom: 5px; }
.chk { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink); background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px; margin-top: 12px; cursor: pointer; }
.chk input { width: 18px; height: 18px; accent-color: var(--brand2); }
.note { display: flex; gap: 10px; background: rgba(52,211,153,.07); border: 1px solid rgba(52,211,153,.22); color: #bff3dd; border-radius: 11px; padding: 13px 15px; font-size: 13.5px; margin-top: 4px; }
.opt-toggle { color: var(--muted); font-size: 14px; cursor: pointer; user-select: none; }
.opt-toggle:hover { color: var(--brand); }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.check { display: flex; align-items: center; gap: 8px; background: var(--panel2); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; font-size: 13.5px; cursor: pointer; }
.check input { width: auto; accent-color: var(--brand2); }
.ok-state { text-align: center; padding: 30px 6px; }
.ok-state .big { font-size: 44px; line-height: 1; margin-bottom: 8px; }

/* ── modal popup ────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(6,10,18,.72); backdrop-filter: blur(4px); display: none; align-items: flex-start; justify-content: center; padding: 40px 16px; overflow-y: auto; }
.modal-overlay.open { display: flex; }
.modal { background: var(--bg); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); width: 100%; max-width: 640px; position: relative; padding: 26px 26px 30px; }
.modal-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.modal-head img { width: 34px; height: 34px; border-radius: 10px; }
.modal-head h2 { margin: 0; font-size: 22px; }
.modal-head p { margin: 2px 0 0; color: var(--muted); font-size: 14px; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--line); background: var(--panel); color: var(--muted); font-size: 18px; cursor: pointer; line-height: 1; }
.modal-close:hover { color: var(--ink); border-color: var(--brand); }
body.embed header, body.embed footer, body.embed .page-hero { display: none; }

@media (max-width: 760px){
  .grid { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 60px 0 30px; }
  .checks { grid-template-columns: 1fr; }
}
