/* LoadSentry site — control-room dark, matching the app's Cryon glass language. */
:root {
  --bg: #000000;
  --surface: #121212;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.09);
  --text: #ffffff;
  --text2: #b6bfc4;
  --text3: #7d878d;
  --accent: #16b9cc;
  --good: #1db954;
  --radius: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  /* static teal aurora, echoing the app's AmbientGlow */
  background-image:
    radial-gradient(90rem 60rem at 85% -10%, rgba(22, 185, 204, 0.14), transparent 60%),
    radial-gradient(70rem 50rem at 8% 110%, rgba(22, 185, 204, 0.07), transparent 60%);
  background-attachment: fixed;
  min-height: 100vh;
}

h1, h2, h3, .wordmark {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.wrap { max-width: 860px; margin: 0 auto; padding: 0 24px; }

header.site {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 0;
}
header.site img { width: 44px; height: 44px; border-radius: 10px; }
header.site .wordmark { font-size: 24px; }
header.site nav { margin-left: auto; display: flex; gap: 22px; }
header.site nav a { color: var(--text2); text-decoration: none; font-size: 15px; }
header.site nav a:hover { color: var(--accent); }

.hero { padding: 56px 0 40px; text-align: center; }
.hero img.mark { width: 132px; height: 132px; border-radius: 28px; margin-bottom: 28px; }
.hero h1 { font-size: clamp(34px, 6vw, 56px); }
.hero h1 .accent { color: var(--accent); }
.hero p.sub {
  color: var(--text2);
  font-size: clamp(17px, 2.4vw, 20px);
  max-width: 620px;
  margin: 18px auto 0;
}

.cta { margin-top: 34px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.btn {
  display: inline-block;
  background: var(--accent);
  color: #001417;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn:hover { filter: brightness(1.1); }
.btn.ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--glass-border);
  font-size: 15px;
}
.cta .note { color: var(--text3); font-size: 14px; }

section { padding: 44px 0; }
section h2 { font-size: 28px; margin-bottom: 26px; text-align: center; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-top-color: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 24px;
}
.card h3 { font-size: 18px; margin-bottom: 8px; color: var(--accent); }
.card p { color: var(--text2); font-size: 15px; }

.signup { text-align: center; }
.signup form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.signup input[type='email'] {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--text);
  font-size: 16px;
  padding: 13px 22px;
  width: min(340px, 100%);
}
.signup input[type='email']:focus { outline: 2px solid var(--accent); border-color: transparent; }
.signup .fine { color: var(--text3); font-size: 13px; margin-top: 12px; }

.disclaimer {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--text3);
  font-size: 14px;
  max-width: 720px;
  margin: 0 auto;
}

footer.site {
  border-top: 1px solid var(--glass-border);
  margin-top: 40px;
  padding: 30px 0 44px;
  color: var(--text3);
  font-size: 14px;
  text-align: center;
}
footer.site a { color: var(--text2); text-decoration: none; margin: 0 10px; }
footer.site a:hover { color: var(--accent); }
footer.site .copyright { margin-top: 12px; }

/* Legal pages */
main.legal { padding: 24px 0 60px; }
main.legal h1 { font-size: 34px; margin-bottom: 6px; }
main.legal .updated { color: var(--text3); font-size: 14px; margin-bottom: 34px; }
main.legal h2 { font-size: 21px; margin: 34px 0 12px; text-align: left; }
main.legal p, main.legal li { color: var(--text2); font-size: 16px; margin-bottom: 12px; }
main.legal ul { padding-left: 24px; margin-bottom: 12px; }
main.legal strong { color: var(--text); }
