/* Nuncio — getnuncio.app · stijl volgens de style guide: ink, signaalrood, papierwit. */

:root {
  --ink: #1A1A1C;
  --signal: #FF3B30;
  --paper: #FFFFFF;
  --paper-2: #F6F6F8;
  --paper-3: #F1F1F3;
  --muted: #6E6E73;
  --line: rgba(26, 26, 28, 0.10);
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Inter, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3 { letter-spacing: -0.02em; line-height: 1.15; }

/* Header */
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 28px;
  padding: 14px 0;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 19px; text-decoration: none;
  margin-right: auto;
}
.brand img { width: 26px; height: 26px; display: block; }
.nav a:not(.brand) {
  text-decoration: none; color: var(--muted); font-size: 15px;
}
.nav a:not(.brand):hover { color: var(--ink); }
.nav .cta { color: var(--paper); }

.btn {
  display: inline-block;
  background: var(--signal);
  color: var(--paper) !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
}
.btn:hover { filter: brightness(0.94); }
.btn.big { font-size: 18px; padding: 14px 32px; }

/* Hero */
.hero { padding: 96px 0 64px; text-align: center; }
.hero h1 { font-size: clamp(40px, 6vw, 64px); font-weight: 700; }
.hero .sub {
  max-width: 640px; margin: 22px auto 0;
  font-size: 20px; color: var(--muted);
}
.hero .sub em { font-style: normal; color: var(--ink); }
.hero .actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }
.hero .note { font-size: 14px; color: var(--muted); }

/* App-mock (abstract, geen Google-materiaal) */
.mock {
  margin: 72px auto 0;
  max-width: 860px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(26, 26, 28, 0.12);
  overflow: hidden;
  text-align: left;
}
.mock .titlebar {
  height: 34px; display: flex; align-items: center; gap: 7px;
  padding: 0 14px; background: var(--paper-2); border-bottom: 1px solid var(--line);
}
.mock .dot { width: 11px; height: 11px; border-radius: 50%; background: #D9D9DE; }
.mock .cols { display: flex; min-height: 340px; }
.mock .side {
  width: 62px; background: #212226; padding: 16px 0;
  display: flex; flex-direction: column; align-items: center; gap: 15px;
  position: relative; z-index: 2; /* badges hangen over de rand; boven de content tekenen */
}
.acct { position: relative; width: 34px; height: 34px; border-radius: 50%; }
.acct::after {
  content: ""; position: absolute; inset: -5px; z-index: 1;
  border-radius: 50%; border: 2px solid var(--ring, transparent);
}
.acct .badge {
  position: absolute; top: -7px; right: -9px; z-index: 3;
  background: var(--signal); color: #fff;
  font-size: 9.5px; font-weight: 700; line-height: 1;
  padding: 3px 5px; border-radius: 999px; border: 1.5px solid #212226;
}
.mock .main { flex: 1; display: flex; flex-direction: column; }
.mock .topbar {
  height: 38px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 18px; padding: 0 18px;
  font-size: 12.5px; color: var(--muted);
}
.mock .topbar .tab { position: relative; padding: 9px 2px; }
.mock .topbar .tab.on { color: var(--ink); font-weight: 600; }
.mock .topbar .tab.on::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--signal); border-radius: 2px;
}
.mock .rows { padding: 16px 18px; display: grid; gap: 11px; }
.mock .row { display: flex; align-items: center; gap: 12px; }
.mock .row .av { width: 26px; height: 26px; border-radius: 50%; background: var(--paper-3); flex: none; }
.mock .row .l1 { height: 9px; border-radius: 5px; background: var(--paper-3); }
.mock .row .cell { flex: 1; display: grid; gap: 6px; }
.mock .row .l1.w60 { width: 60%; }
.mock .row .l1.w85 { width: 85%; }
.mock .row.unread .l1 { background: #E4E4E9; }

/* Secties */
section { padding: 88px 0; }
section.alt { background: var(--paper-2); }
.kicker {
  display: inline-block; font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 14px;
}
section h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.lede { max-width: 640px; color: var(--muted); font-size: 18px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
section.alt .card { border-color: transparent; box-shadow: 0 8px 30px rgba(26,26,28,0.06); }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15.5px; }

/* Multi-account sectie */
.maRow { display: flex; gap: 44px; justify-content: center; margin: 52px 0 6px; flex-wrap: wrap; }
.maItem { text-align: center; }
.bigacct {
  position: relative; width: 64px; height: 64px; border-radius: 50%; margin: 0 auto;
}
.bigacct::after {
  content: ""; position: absolute; inset: -8px; z-index: 1;
  border-radius: 50%; border: 3px solid var(--ring);
}
.bigacct .badge {
  position: absolute; top: -9px; right: -13px; z-index: 3;
  background: var(--signal); color: #fff;
  font-size: 11px; font-weight: 700; line-height: 1;
  padding: 4px 7px; border-radius: 999px; border: 2px solid var(--paper-2);
}
.maItem .lbl { margin-top: 18px; font-weight: 600; font-size: 15px; }
.maItem .key {
  margin-top: 5px; display: inline-block;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px; color: var(--muted);
  background: var(--paper); border: 1px solid var(--line);
  padding: 2px 9px; border-radius: 6px;
}
.maPoints { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 52px; }
.maPoints h4 { font-size: 15.5px; margin-bottom: 4px; }
.maPoints p { font-size: 14px; color: var(--muted); }

/* Feature-kaarten */
.featgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.feat {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
section.alt .feat { border-color: transparent; box-shadow: 0 8px 30px rgba(26, 26, 28, 0.06); }
.feat svg { width: 24px; height: 24px; margin-bottom: 12px; display: block; }
.feat h3 { font-size: 16.5px; margin-bottom: 5px; }
.feat p { font-size: 14px; color: var(--muted); }

/* Zwevend paneel-sectie: het paneel in context, aan de rand van een bureaublad */
.panelgrid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: center; margin-top: 20px; }
.scene { display: flex; justify-content: center; }
.desktop {
  position: relative; width: 350px; height: 440px;
  border-radius: 20px; overflow: hidden;
  background:
    radial-gradient(120% 90% at 15% 8%, rgba(122, 160, 255, 0.55) 0%, rgba(122, 160, 255, 0) 55%),
    radial-gradient(110% 80% at 90% 18%, rgba(255, 196, 150, 0.6) 0%, rgba(255, 196, 150, 0) 60%),
    radial-gradient(130% 110% at 40% 100%, rgba(157, 216, 178, 0.55) 0%, rgba(157, 216, 178, 0) 60%),
    linear-gradient(150deg, #EDF1FB 0%, #FBEFF0 45%, #F2F5EE 100%);
  box-shadow: inset 0 0 0 1px var(--line), 0 30px 70px rgba(26, 26, 28, 0.16);
}
.desktop .menubar {
  position: absolute; top: 0; left: 0; right: 0; height: 24px; z-index: 1;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 12px; font-size: 10px; color: rgba(26, 26, 28, 0.55);
  background: rgba(255, 255, 255, 0.55);
}
.ghostwin {
  position: absolute; left: 20px; top: 48px; width: 195px; bottom: 26px; z-index: 1;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(26, 26, 28, 0.08);
  padding: 16px 14px; display: grid; gap: 10px; align-content: start;
}
.ghostwin span { height: 8px; border-radius: 5px; background: rgba(26, 26, 28, 0.08); display: block; }
.ghostwin span:nth-child(2n) { width: 70%; }
.edgepanel {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%); z-index: 4;
  background: #202126; border-radius: 24px; padding: 17px 13px;
  display: flex; flex-direction: column; gap: 15px;
  box-shadow: 0 18px 44px rgba(26, 26, 28, 0.35);
}
.edgepanel .acct .badge { border-color: #202126; }
.slidecard {
  position: absolute; right: 78px; top: 96px; z-index: 3;
  background: #202126; color: #fff; border-radius: 14px;
  padding: 11px 14px; width: 205px;
  display: flex; gap: 9px; align-items: center;
  box-shadow: 0 16px 40px rgba(26, 26, 28, 0.3);
}
.slidecard .sc-av { width: 24px; height: 24px; border-radius: 50%; flex: none; }
.slidecard .sc-t { font-size: 12px; font-weight: 700; line-height: 1.3; }
.slidecard .sc-s { font-size: 11px; color: rgba(255, 255, 255, 0.65); }

/* Taalmenu */
.langmenu { position: relative; }
.langmenu summary {
  list-style: none; cursor: pointer; font-size: 14px; color: var(--muted);
  padding: 4px 10px; border: 1px solid var(--line); border-radius: 8px;
}
.langmenu summary::-webkit-details-marker { display: none; }
.langmenu[open] summary { color: var(--ink); }
.langmenu .menu {
  position: absolute; right: 0; top: 34px; z-index: 30;
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 14px 40px rgba(26, 26, 28, 0.12);
  display: grid; min-width: 150px; padding: 6px;
}
.langmenu .menu a {
  text-decoration: none; font-size: 14px; color: var(--ink);
  padding: 7px 10px; border-radius: 7px;
}
.langmenu .menu a:hover { background: var(--paper-2); }

/* Statement */
.statement { text-align: center; }
.statement h2 { font-size: clamp(32px, 5vw, 52px); }
.statement p { max-width: 560px; margin: 18px auto 0; color: var(--muted); font-size: 18px; }

/* Download */
.download { text-align: center; }
.download .reqs { margin-top: 18px; color: var(--muted); font-size: 15px; }

/* FAQ (gedeeld met faq.html) */
.faqnav {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 8px;
}
.faqnav a {
  font-size: 13.5px; text-decoration: none; color: var(--ink);
  background: var(--paper-2); border: 1px solid var(--line);
  padding: 6px 13px; border-radius: 999px;
}
.faqnav a:hover { background: var(--paper-3); }
.faqsearch {
  width: 100%; max-width: 420px;
  font: inherit; font-size: 16px;
  padding: 11px 16px; margin-top: 26px;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--paper);
}
.faqsearch:focus { outline: 2px solid var(--signal); outline-offset: 1px; border-color: transparent; }
.faqgroup { margin-top: 46px; }
.faqgroup h2 { font-size: 24px; margin-bottom: 6px; scroll-margin-top: 90px; }
details {
  border-bottom: 1px solid var(--line);
}
details summary {
  cursor: pointer; list-style: none;
  padding: 15px 30px 15px 0; position: relative;
  font-weight: 600; font-size: 16.5px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+"; position: absolute; right: 4px; top: 12px;
  font-size: 20px; color: var(--muted); font-weight: 400;
}
details[open] summary::after { content: "–"; }
details .a { padding: 0 0 18px; color: var(--muted); font-size: 15.5px; max-width: 700px; }
details .a p + p { margin-top: 10px; }
details .a code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13.5px; background: var(--paper-2);
  padding: 1.5px 6px; border-radius: 5px;
}
.settingslist { margin-top: 10px; }
.settingslist dt { font-weight: 600; margin-top: 14px; font-size: 15.5px; }
.settingslist dd { color: var(--muted); font-size: 14.5px; margin-left: 0; }

/* Prose-pagina's (privacy) */
.prose { max-width: 700px; padding-top: 70px; padding-bottom: 90px; }
.prose h2 { font-size: clamp(30px, 4.5vw, 44px); margin-bottom: 10px; }
.prose h3 { font-size: 20px; margin: 34px 0 8px; }
.prose p, .prose li { color: var(--muted); font-size: 16.5px; }
.prose ul { padding-left: 22px; margin-top: 8px; }
.prose .date { font-size: 14px; color: var(--muted); }

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 44px 0 60px; font-size: 13.5px; color: var(--muted);
}
footer .cols { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
footer .tm { max-width: 560px; }

@media (max-width: 820px) {
  .cards { grid-template-columns: 1fr; }
  .featgrid { grid-template-columns: 1fr; }
  .maPoints { grid-template-columns: 1fr 1fr; }
  .maRow { gap: 30px; }
  .panelgrid { grid-template-columns: 1fr; }
  .scene { margin-top: 10px; }
  /* Prose-pagina's (privacy) */
  .nav a.hidemobile { display: none; }
  section { padding: 64px 0; }
}
