/* Cold Eye V3.2 — shared stylesheet.
   Cool palette + Lora/Lato. Mirrors the PDF visual contract. */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;500;600;700&display=swap');

:root {
  --ink:    #1a1a1a;
  --muted:  #6b6b6b;
  --faded:  #9b9b9b;
  --rule:   #d8d8d8;
  --ice:    #A4C9E0;
  --accent: #3F6FA5;
  --bg:     #ffffff;
  --panel:  #f7f9fb;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; }
a:hover { border-bottom-color: var(--accent); }

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 28px;
}

.container-wide {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Typography ------------------------------------------------------------ */

h1, h2, h3 { font-family: 'Lora', Georgia, serif; color: var(--ink); margin: 0; }

h1 {
  font-weight: 600;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  margin-top: 48px;
  margin-bottom: 12px;
}

h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
  margin-top: 24px;
  margin-bottom: 8px;
}

p { margin: 0 0 16px; }

.label, .nav, .meta, button, input, select, textarea, .pill {
  font-family: 'Lato', -apple-system, system-ui, sans-serif;
}

.muted { color: var(--muted); }
.faded { color: var(--faded); }

.ice-rule {
  border: 0;
  height: 2px;
  background: var(--ice);
  width: 64px;
  margin: 16px 0 24px;
}

.hairline {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: 32px 0;
}

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

.site-header {
  padding: 28px 0 16px;
  border-bottom: 1px solid var(--rule);
}

.site-header .container,
.site-header .container-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--ink);
  border: 0;
}

.brand-mark {
  color: var(--accent);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-top: -4px;
}

.nav {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.nav a { color: var(--muted); margin-left: 22px; }
.nav a:hover { color: var(--accent); }

.site-footer {
  margin-top: 80px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: var(--faded);
  letter-spacing: 0.04em;
}
.site-footer a { color: var(--faded); }
.site-footer a:hover { color: var(--accent); }

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

.hero {
  padding: 72px 0 48px;
}
.hero h1 { margin-bottom: 16px; }
.hero p.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 600px;
}

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

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 48px;
}
@media (max-width: 720px) {
  .tier-grid { grid-template-columns: 1fr; }
}

.tier {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 24px;
}
.tier h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}
.tier .price {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 32px;
  color: var(--ink);
  margin: 12px 0 8px;
  line-height: 1;
}
.tier p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* Form ------------------------------------------------------------------ */

form { margin: 32px 0; }

.field { margin-bottom: 20px; }

label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

input[type="text"],
input[type="email"],
input[type="file"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: white;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="file"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(63, 111, 165, 0.15);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.checkbox-row input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
}
.checkbox-row a { color: var(--accent); }

button[type="submit"], .btn-primary {
  background: var(--accent);
  color: white;
  border: 0;
  padding: 14px 28px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
}
button[type="submit"]:hover, .btn-primary:hover {
  background: #345a87;
}
button[type="submit"]:disabled {
  background: var(--faded);
  cursor: not-allowed;
}

/* Status / processing --------------------------------------------------- */

.status-card {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--ice);
  border-radius: 6px;
  padding: 24px 28px;
  margin: 32px 0;
}
.status-card .status-label {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--faded);
}
.status-card .status-line {
  font-size: 18px;
  margin: 8px 0 0;
  color: var(--ink);
}

.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid var(--rule);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Legal pages ----------------------------------------------------------- */

.legal h1 {
  font-size: 32px;
  margin-bottom: 8px;
}
.legal .updated {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: var(--faded);
  margin-bottom: 32px;
}
.legal h2 {
  font-size: 20px;
  margin-top: 36px;
  margin-bottom: 8px;
}
.legal p, .legal li {
  font-size: 16px;
  line-height: 1.65;
}
.legal ul {
  padding-left: 20px;
}

