/* rondel.northido.com — light only, system fonts, zero external requests */

:root {
  --plum: #5A2846;
  --plum-deep: #42182F;
  --plum-hover: #7A3A60;
  --apricot: #F2B8A2;
  --bg: #FBF3F2;
  --surface: #FFFFFF;
  --sunk: #F6E7E5;
  --ink: #33212A;
  --muted: #9C7A87;
  --divider: #EFD9D9;
  --footer-ink: #E8CFDA;
  --blush-ink: #FDF1EE;
  --serif: ui-serif, Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.5 var(--sans);
}
a { color: var(--plum); }
a:hover { color: var(--plum-hover); }
img, svg { max-width: 100%; }
.ring { flex: none; }

/* ---------- nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  max-width: 1280px;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand span { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--plum); }
.nav-links { display: flex; gap: 32px; font-size: 15px; font-weight: 500; }
.nav-links a { color: var(--ink); text-decoration: none; }
.nav-links a:hover { color: var(--plum); }
.nav-links a[aria-current="page"] { color: var(--plum); font-weight: 700; }

/* ---------- App Store button ---------- */
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--plum);
  color: var(--bg);
  border-radius: 12px;
  padding: 14px 24px;
  text-decoration: none;
}
.btn-store:hover { background: var(--plum-hover); color: var(--bg); }
.btn-store-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.btn-store-small { font-size: 11px; opacity: 0.85; }
.btn-store-big { font-size: 19px; font-weight: 600; }
.free-note { font-size: 15px; color: var(--muted); font-weight: 500; }

/* ---------- hero ---------- */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  padding: 56px 64px 88px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: 58px;
  line-height: 1.08;
  font-weight: 700;
  color: var(--plum);
  margin: 0 0 20px;
  text-wrap: pretty;
}
.hero-lede { font-size: 20px; line-height: 1.5; margin: 0 0 36px; max-width: 34ch; }
.cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-phone { justify-self: center; }

/* ---------- phone mockup (decorative) ---------- */
.phone {
  width: 340px;
  max-width: calc(100vw - 48px);
  background: #211018;
  border-radius: 54px;
  padding: 11px;
  box-shadow: 0 30px 60px rgba(42, 20, 32, 0.32), inset 0 0 0 2px rgba(255, 255, 255, 0.04);
}
.phone-screen {
  position: relative;
  background: var(--bg);
  border-radius: 44px;
  overflow: hidden;
  height: 700px;
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
}

/* ---------- features ---------- */
.features { background: var(--sunk); }
.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.feature { display: flex; flex-direction: column; gap: 12px; }
.feature h3 { font-family: var(--serif); font-size: 21px; font-weight: 700; color: var(--plum); margin: 0; }
.feature p { font-size: 15px; line-height: 1.55; margin: 0; }

/* ---------- closing CTA ---------- */
.closing {
  padding: 88px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.closing h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--plum);
  margin: 0;
  max-width: 22ch;
  text-wrap: pretty;
}

/* ---------- footer ---------- */
.site-footer { background: var(--plum); color: var(--footer-ink); }
.site-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-footer-links { display: flex; flex-wrap: wrap; gap: 28px; font-size: 15px; font-weight: 500; }
.site-footer-links a { color: var(--bg); text-decoration: none; }
.site-footer-links a:hover { color: var(--bg); text-decoration: underline; }
.imprint { font-size: 13px; line-height: 1.5; opacity: 0.75; margin: 0; }
.imprint a { color: inherit; }

/* ---------- centered utility pages (/join, 404) ---------- */
.center-page { min-height: 100svh; display: flex; flex-direction: column; }
.center-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  gap: 20px;
}
.center-main h1 {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--plum);
  margin: 0;
  text-wrap: pretty;
}
.center-main .lede { font-size: 16px; line-height: 1.55; margin: 0; max-width: 30ch; }
.center-main .btn-store { margin-top: 8px; padding: 14px 26px; }
.hint-card { background: var(--sunk); border-radius: 14px; padding: 14px 18px; margin-top: 16px; max-width: 300px; }
.hint-card p { font-size: 14px; line-height: 1.5; margin: 0; }
.hint-card strong { color: var(--plum); }
.mini-footer {
  padding: 20px 24px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.mini-footer a { color: var(--plum); text-decoration: none; }
.mini-footer a:hover { text-decoration: underline; }
.underline-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--plum);
  text-decoration: none;
  border-bottom: 2px solid var(--apricot);
  padding-bottom: 2px;
}
.underline-link:hover { color: var(--plum-hover); }

/* ---------- legal pages ---------- */
.legal-nav { border-bottom: 1px solid var(--divider); }
.legal-main { padding: 56px 24px 72px; }
.legal-article { max-width: 65ch; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.legal-article h1 { font-family: var(--serif); font-size: 38px; font-weight: 700; color: var(--plum); margin: 0; }
.legal-updated { font-size: 14px; color: var(--muted); font-weight: 500; }
.legal-article h2 { font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--plum); margin: 20px 0 0; }
.legal-article h3 { font-family: var(--sans); font-size: 17px; font-weight: 700; color: var(--ink); margin: 16px 0 0; }
.legal-article p, .legal-article li { font-size: 17px; line-height: 1.65; margin: 0; }
.legal-article ul { margin: 0; padding-left: 22px; display: flex; flex-direction: column; gap: 6px; }
.table-scroll { overflow-x: auto; }
.data-table {
  border: 1px solid var(--divider);
  border-radius: 12px;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  min-width: 540px;
  font-size: 14px;
  line-height: 1.5;
  overflow: hidden;
}
.data-table th {
  background: var(--sunk);
  color: var(--plum);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  padding: 10px 16px;
}
.data-table td { padding: 12px 16px; border-top: 1px solid var(--divider); vertical-align: top; }
.data-table td:first-child { font-weight: 600; white-space: nowrap; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav { padding: 18px 24px; }
  .brand svg { width: 26px; height: 26px; }
  .brand span { font-size: 19px; }
  .nav-links { gap: 22px; font-size: 14px; }
  .nav-links .nav-privacy { display: none; }
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 32px 24px 40px; }
  .hero h1 { font-size: 38px; line-height: 1.1; }
  .hero-lede { font-size: 17px; }
  .features-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
  .closing { padding: 64px 24px; }
  .closing h2 { font-size: 30px; }
  .site-footer-inner { padding: 32px 24px; gap: 14px; }
  .site-footer-links { gap: 22px; font-size: 14px; }
  .imprint { font-size: 12px; }
}
@media (max-width: 600px) {
  .legal-main { padding: 40px 20px 56px; }
  .legal-article h1 { font-size: 30px; }
}
