/* klinbook.com — generated from apps/site/src/styles.ts. Do not edit dist/. */

:root {
  color-scheme: light;

  /* Brand ramp — verbatim from the panel's globals.css. */
  --blue-50: #f0f6ff;
  --blue-300: #9ec1ff;
  --blue-500: #3a7fff;
  --blue-600: #0061fe;
  --blue-700: #0051d7;
  --blue-800: #0042b2;
  --brand-navy: #0b1a2d;

  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --warning: #d97706;

  /* Semantic aliases (light). */
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-muted: var(--slate-100);
  --border-color: var(--slate-200);
  --text: var(--slate-800);
  --text-muted: var(--slate-500);
  --text-faint: var(--slate-400);
  --accent-color: var(--blue-600);
  --accent-weak: var(--blue-50);
  --accent-text: var(--blue-700);

  /* The design's four radius steps, declared literally — the scale is not
     an arithmetic progression, so it is not derived from one value. */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;

  /* The brand surface, from Web Login.dc.html. Anchored on --brand-navy,
     not on the top of the blue ramp. */
  --brand-gradient: linear-gradient(160deg, var(--brand-navy) 0%, var(--blue-700) 55%, var(--blue-800) 100%);
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;

    --bg: #0b1220;
    --surface: var(--slate-900);
    --surface-muted: var(--slate-800);
    --border-color: var(--slate-800);
    --text: var(--slate-200);
    --text-muted: var(--slate-400);
    --text-faint: var(--slate-500);
    --accent-color: var(--blue-500);
    --accent-weak: rgba(58, 127, 255, 0.18);
    --accent-text: var(--blue-300);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.45);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  /* 16px/1.6 body, from the design's sub-headline step. The panel runs at
     14px because it is a dense application; a brochure page read on a phone
     does not. */
  font-size: 16px;
  line-height: 1.6;
}

/* Mobile first: a single column with a 20px gutter, capped at 760px. */
.container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------------------------------------------------------------- header */

.site-header {
  background: var(--brand-gradient);
  color: #ffffff;
  padding: 18px 0;
}

.site-header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  justify-content: space-between;
}

.lockup {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #ffffff;
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 22px;
  height: 24px;
  display: block;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

/* ------------------------------------------------------------------ hero */

.hero {
  background: var(--brand-gradient);
  color: #ffffff;
  padding: 40px 0 56px;
}

.hero h1 {
  margin: 0;
  /* 38/1.16/800, tracking -0.025em — Web Login.dc.html's headline step. */
  font-size: 38px;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-wrap: pretty;
}

.hero p {
  margin: 18px 0 0;
  max-width: 44ch;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  text-wrap: pretty;
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
  }
}

/* --------------------------------------------------------------- content */

main {
  padding: 44px 0 8px;
}

section {
  margin: 0 0 40px;
}

/* The legal pages carry their own <h1> inside the content column — the
   hero's 38px step belongs to the one-pager, not to a document someone is
   reading top to bottom. */
main h1 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  margin: 26px 0 8px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
}

p {
  margin: 0 0 14px;
  text-wrap: pretty;
}

a {
  color: var(--accent-text);
}

ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

li {
  margin: 0 0 7px;
}

.lede {
  font-size: 17px;
  color: var(--text-muted);
}

.meta {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.card + .card {
  margin-top: 14px;
}

.card h3 {
  margin-top: 0;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

/* A statement the product is legally held to — drawn as a notice, not as
   body copy, so it is not skimmed past. */
.disclaimer {
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-color);
  border-radius: var(--radius-md);
  background: var(--accent-weak);
  padding: 16px 18px;
}

.disclaimer p:last-child {
  margin-bottom: 0;
}

/* The awaiting-legal-review banner. Warning-coloured on purpose: it must
   not read as decoration. */
.review-banner {
  border: 1px solid var(--warning);
  border-radius: var(--radius-md);
  background: rgba(217, 119, 6, 0.1);
  padding: 16px 18px;
  margin: 0 0 32px;
}

.review-banner strong {
  display: block;
  margin-bottom: 6px;
}

.review-banner p:last-child {
  margin-bottom: 0;
}

.contact {
  background: var(--surface-muted);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.contact p:last-child {
  margin-bottom: 0;
}

dl.terms {
  margin: 0 0 14px;
}

dl.terms dt {
  font-weight: 600;
  margin-top: 14px;
}

dl.terms dd {
  margin: 4px 0 0;
  color: var(--text-muted);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 14px;
  font-size: 15px;
}

th,
td {
  border: 1px solid var(--border-color);
  padding: 9px 11px;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--surface-muted);
  font-weight: 600;
}

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

.site-footer {
  border-top: 1px solid var(--border-color);
  margin-top: 24px;
  padding: 26px 0 40px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--accent-text);
}

:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
