/* SiteLift blue/white system — matches design/ mockups */
:root {
  --white: #ffffff;
  --well: #f5f8fc;
  --ink: #182338;
  --muted: #5c6b83;
  --faint: #8b98ad;
  --line: #dde4ee;
  --line-strong: #c8d4e8;
  --blue: #1a5cd8;
  --blue-deep: #10419f;
  --blue-pale: #e9f0fc;
  --warn: #c98a1b;
  --warn-bg: #fdf6e8;
  --danger: #b3452e;
  --body: 'Instrument Sans', 'Segoe UI', system-ui, sans-serif;
  --mono: 'Spline Sans Mono', ui-monospace, Consolas, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-deep); text-decoration: underline; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

.top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 64px;
}
.brand { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 19px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.top .side { font-size: 14px; color: var(--muted); }

.col { max-width: 680px; margin: 0 auto; padding: 0 24px 80px; display: flex; flex-direction: column; align-items: center; gap: 36px; }

h1 { font-weight: 700; font-size: clamp(1.9rem, 5vw, 2.6rem); letter-spacing: -0.02em; text-align: center; text-wrap: balance; }
.sub { font-size: 17px; color: var(--muted); text-align: center; max-width: 34rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 28px; border-radius: 10px;
  border: none; background: var(--blue); color: #fff;
  font: 600 15px var(--body); cursor: pointer;
}
.btn:hover { background: var(--blue-deep); }
.btn.ghost { background: var(--white); border: 1.5px solid var(--line-strong); color: var(--blue); }
.btn.ghost:hover { background: var(--blue-pale); }
.btn.quiet { background: none; border: none; color: var(--faint); min-height: 44px; padding: 0 12px; }
.btn.quiet:hover { color: var(--danger); background: none; }
.btn:disabled { opacity: .5; cursor: default; }
.btn.small { min-height: 42px; padding: 0 18px; font-size: 14px; }

.pill { display: inline-flex; align-items: center; gap: 7px; padding: 5px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; }
.pill.blue { background: var(--blue-pale); color: var(--blue-deep); }
.pill.blue::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.pill.gray { background: #f0f2f6; color: var(--faint); }

input[type=text], input[type=email] {
  font: 400 15px var(--body); color: var(--ink);
  min-height: 48px; padding: 0 16px;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--white);
  width: 100%;
}
input:focus { outline: none; border-color: var(--blue); }

.mono { font-family: var(--mono); }
.err { color: var(--danger); font-size: 14px; }
.hint { color: var(--faint); font-size: 13.5px; }

.dropzone {
  width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: var(--well); border: 2px dashed #b9cbe8; border-radius: 20px;
  padding: 56px 32px; cursor: pointer; text-align: center;
  transition: border-color .15s, background .15s;
}
.dropzone:hover, .dropzone.drag { border-color: var(--blue); background: var(--blue-pale); }
.dropzone .big { font-weight: 600; font-size: 22px; }

.copyline {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1.5px solid var(--line); border-radius: 26px;
  padding: 10px 10px 10px 22px; max-width: 100%;
}
.copyline .text { font-family: var(--mono); font-size: 13.5px; line-height: 1.55; overflow-wrap: anywhere; }
/* The URL moves to the next line as one piece; it only breaks internally when
   it is wider than the whole box (narrow phones). */
.copyline .text b { display: inline-block; max-width: 100%; overflow-wrap: anywhere; font-weight: 600; }
.copyline .text b { color: var(--blue); font-weight: 600; }
.copyline .btn { border-radius: 999px; min-height: 42px; padding: 0 20px; font-size: 14px; flex: none; }

.card { width: 100%; background: var(--well); border-radius: 14px; padding: 20px 22px; }
.rowline { display: flex; align-items: center; gap: 12px; }

.steps { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13.5px; color: var(--faint); flex-wrap: wrap; }
.steps b { color: var(--ink); font-weight: 600; }

.checkrow { display: flex; align-items: center; gap: 12px; width: 100%; font-size: 15.5px; text-align: left; }
.checkrow .ok {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%; background: var(--blue); flex: none;
}
.checkrow.warn { background: var(--warn-bg); border-radius: 12px; padding: 12px 14px; }
.checkrow.warn .ok { background: var(--warn); }

.browser { width: 100%; background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: 0 3px 16px rgba(24,35,56,0.07); }
.browser .bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--well); border-bottom: 1px solid var(--line); }
.browser .bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.browser iframe { display: block; width: 100%; height: 420px; border: 0; background: #fff; }

.toast {
  position: fixed; bottom: 24px; left: 50%; translate: -50%;
  background: var(--ink); color: #fff; padding: 10px 20px; border-radius: 999px;
  font-size: 14px; opacity: 0; transition: opacity .25s; pointer-events: none; z-index: 10;
}
.toast.show { opacity: 1; }

.domain-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 8px; border-bottom: 1px solid #eef2f8; width: 100%; }
.domain-row .d { font-family: var(--mono); font-size: 15px; }

.statrow { display: flex; gap: 48px; justify-content: center; text-align: center; flex-wrap: wrap; }
.statrow .n { font-weight: 700; font-size: 32px; letter-spacing: -0.5px; display: block; }
.statrow .l { font-size: 13.5px; color: var(--muted); }

.section { width: 100%; display: flex; flex-direction: column; gap: 12px; }
.section > .h { font-weight: 600; font-size: 16px; display: flex; justify-content: space-between; align-items: baseline; }
.vrow { display: flex; align-items: center; justify-content: space-between; padding: 12px 4px; border-bottom: 1px solid #eef2f8; font-size: 14px; }

@media (max-width: 720px) {
  .top { padding: 18px 24px; }
  .statrow { gap: 28px; }
}
