/*
 * inndeskapp.com
 *
 * Three pages and no build step. Two of them exist because Wix will not pass
 * a listing whose privacy and terms links do not resolve, and the third is
 * there so the domain does not answer with a directory listing.
 *
 * The type and the corners match the app, because somebody who reads the
 * policy and then installs the thing should recognise it.
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Roboto:wght@400;500;700&display=swap');

:root {
  --ink: #14181f;
  --muted: #5a6472;
  --line: #e2e6eb;
  --paper: #ffffff;
  --ground: #f7f8fa;
  --brand: #7a4e24;
  --radius: 8px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: Roboto, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

a { color: var(--brand); }

.bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.bar .inner,
.page,
.foot .inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.bar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
}

.mark {
  font-family: Poppins, 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}

.bar nav {
  display: flex;
  gap: 18px;
  font-size: 14.5px;
}

.bar nav a { color: var(--muted); text-decoration: none; }
.bar nav a:hover { color: var(--ink); }

.page {
  padding-top: 44px;
  padding-bottom: 64px;
}

h1 {
  font-family: Poppins, 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(28px, 6vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 10px;
  text-wrap: balance;
}

h2 {
  font-family: Poppins, 'Segoe UI', system-ui, sans-serif;
  font-size: 19px;
  font-weight: 600;
  margin: 34px 0 8px;
}

h3 {
  font-family: Poppins, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 22px 0 6px;
}

p, ul { margin: 0 0 14px; }
ul { padding-left: 22px; }
li { margin-bottom: 7px; }

.lede {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 26px;
}

.stamp {
  display: inline-block;
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 5px 11px;
  margin-bottom: 26px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 22px 0;
}

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

/*
 * The three things a lawyer has to fill in, marked so they cannot be shipped
 * by accident. If any of this is still amber on the live site, the document
 * is wrong rather than merely unfinished.
 */
.fillin {
  background: #fdf0d5;
  border-bottom: 2px solid #c9922a;
  padding: 0 4px;
  border-radius: 3px;
  font-weight: 500;
}

.foot {
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 14px;
}

.foot .inner {
  padding-top: 22px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.foot a { color: var(--muted); }

.points {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 620px) {
  .points { grid-template-columns: 1fr 1fr; }
}

.points li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 0;
}

.points strong {
  font-family: Poppins, 'Segoe UI', system-ui, sans-serif;
  display: block;
  margin-bottom: 3px;
}

.points span { color: var(--muted); font-size: 15px; }
