/* Sample Organizer — marketing site
   Palette pulled from the plugin: near-black slate ground, #0049f6 accent,
   IBM Plex Sans, pill-shaped controls. */

:root {
  --bg:        #17181b;
  --bg-2:      #1d1f23;
  --panel:     #212429;
  --panel-2:   #262930;
  --border:    #34363d;
  --border-2:  #3f424a;
  --text:      #eceef1;
  --text-2:    #a4a7b0;
  --text-3:    #7c7f88;
  --accent:    #0049f6;
  --accent-h:  #1f60ff;
  --accent-lt: #5b8dff;
  --radius:    14px;
  --maxw:      1080px;
  --font: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--accent-lt); text-decoration: none; }
a:hover { color: #82a8ff; }

em { font-style: normal; color: var(--accent-lt); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: 24px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4em;
  font: inherit; font-weight: 600;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, transform .1s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-h); color: #fff; transform: translateY(-1px); }
.btn-sm { padding: 9px 18px; font-size: 15px; }
.btn-block { display: flex; width: 100%; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(23,24,27,.94);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 62px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); font-weight: 600; font-size: 16px; letter-spacing: -.01em;
}
.brand:hover { color: var(--text); }
.brand-mark {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--accent);
  background-image:
    linear-gradient(#fff,#fff), linear-gradient(#fff,#fff), linear-gradient(#fff,#fff);
  background-repeat: no-repeat;
  background-size: 12px 2px, 12px 2px, 8px 2px;
  background-position: 5px 6px, 5px 10px, 5px 14px;
}
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { color: var(--text-2); font-size: 15px; }
.nav-links a:hover { color: var(--text); }
.nav .btn { margin-left: 4px; }

/* ---------- hero ---------- */
.hero { padding: 84px 24px 40px; text-align: center; }
.eyebrow {
  color: var(--text-3); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 22px;
}
h1 {
  font-size: clamp(32px, 5.2vw, 54px);
  line-height: 1.12; font-weight: 700; letter-spacing: -.02em;
  margin-bottom: 22px;
}
.lede {
  max-width: 640px; margin: 0 auto 34px;
  color: var(--text-2); font-size: clamp(16px, 2vw, 19px);
}
.cta-row { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-note { color: var(--text-3); font-size: 14px; }

/* ---------- screenshot frame ---------- */
.shot { margin: 0; }
.shot-hero { margin-top: 56px; }
.shot-frame {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.02) inset;
}
.shot-frame img { width: 100%; height: auto; display: block; }
.shot figcaption {
  margin-top: 16px; color: var(--text-2); font-size: 15.5px;
  max-width: 620px;
}
.shot figcaption strong { color: var(--text); font-weight: 600; }

/* ---------- sections ---------- */
.section { padding: 76px 24px; border-top: 1px solid var(--border); }
.section h2 {
  font-size: clamp(24px, 3.4vw, 34px); font-weight: 700; letter-spacing: -.02em;
  margin-bottom: 40px; text-align: center;
}

/* ---------- grids / cards ---------- */
.grid { display: grid; gap: 18px; }
.features { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.compat { grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); }
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card h3 { font-size: 17px; font-weight: 600; }
.card p { color: var(--text-2); font-size: 15px; }
.card p strong { color: var(--text); font-weight: 600; }
.compat .card h3 { margin-bottom: 2px; }
.card .ic {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,73,246,.14); color: var(--accent-lt);
  font-size: 17px; margin-bottom: 4px;
}

/* pills (formats) */
.pills { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------- deep-dive feature detail ---------- */
.section-lead {
  text-align: center; color: var(--text-2); font-size: 16px;
  margin: -24px auto 44px; max-width: 560px;
}
.deep {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 18px;
}
.cat {
  margin-top: 40px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  font-size: 13px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent-lt);
}
.cat:first-child { margin-top: 0; }
.cat-lead { color: var(--text-2); font-size: 15px; margin-top: -6px; }
.detail {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.detail h4 { font-size: 16.5px; font-weight: 600; margin-bottom: 8px; }
.detail > p { color: var(--text-2); font-size: 15px; margin-bottom: 12px; }
.spec { list-style: none; display: grid; gap: 10px; }
.spec.two-col { grid-template-columns: 1fr 1fr; }
.spec li {
  position: relative; padding-left: 20px;
  color: var(--text-2); font-size: 14.5px; line-height: 1.55;
}
.spec li::before {
  content: ""; position: absolute; left: 2px; top: 9px;
  width: 5px; height: 5px; border-radius: 1px;
  background: var(--accent-lt); transform: rotate(45deg);
}
.spec li strong { color: var(--text); font-weight: 600; }
.detail code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px; background: var(--bg-2);
  border: 1px solid var(--border); border-radius: 4px;
  padding: 1px 5px; color: var(--text);
}
.pills li {
  border: 1px solid var(--border-2); border-radius: 999px;
  padding: 5px 13px; font-size: 14px; color: var(--text);
  background: var(--panel-2);
}

/* ---------- screenshots section ---------- */
.screens { display: flex; flex-direction: column; gap: 60px; align-items: center; }

.demo {
  margin-top: 60px;
  border: 1px dashed var(--border-2);
  border-radius: var(--radius);
  background: var(--bg-2);
}
.demo-inner { padding: 40px 24px; text-align: center; }
.demo-tag {
  color: var(--text-3); font-size: 12px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 10px;
}
.demo-copy { color: var(--text); font-size: 16px; }
.demo-soon { color: var(--text-3); font-size: 14px; margin-top: 6px; }

/* ---------- pricing ---------- */
.price-card {
  max-width: 480px; margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--border-2);
  border-radius: 18px;
  padding: 34px;
  text-align: center;
}
.price-head { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-bottom: 22px; }
.price-amount { font-size: 46px; font-weight: 700; letter-spacing: -.03em; }
.price-term { color: var(--text-3); font-size: 16px; }
.checks { list-style: none; text-align: left; display: grid; gap: 11px; margin-bottom: 26px; }
.checks li { position: relative; padding-left: 28px; color: var(--text-2); font-size: 15px; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(0,73,246,.16);
  box-shadow: inset 0 0 0 1px rgba(91,141,255,.5);
}
.checks li::after {
  content: ""; position: absolute; left: 5px; top: 8px;
  width: 5px; height: 8px;
  border: solid var(--accent-lt); border-width: 0 2px 2px 0;
  transform: rotate(40deg);
}
.price-fine { color: var(--text-3); font-size: 13px; margin-top: 14px; }

/* ---------- faq ---------- */
.faq { max-width: 720px; margin: 0 auto; display: grid; gap: 10px; }
.faq details {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 18px;
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: 14px 0; font-weight: 600; font-size: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--text-3); font-weight: 400; font-size: 20px; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--text-2); font-size: 15px; padding: 0 0 16px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 32px 24px; }
.footer-inner {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  color: var(--text-3); font-size: 14px;
}
.footer .brand { font-size: 14px; color: var(--text-2); }
.footer .brand-mark { width: 18px; height: 18px; background-size: 10px 1.6px, 10px 1.6px, 7px 1.6px; background-position: 4px 5px, 4px 8.5px, 4px 12px; }
.footer .copy { margin-left: auto; }

/* ---------- responsive ---------- */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .br-desktop { display: none; }
  .hero { padding-top: 56px; }
  .shot-hero { margin-top: 38px; }
  .section { padding: 56px 24px; }
  .footer .copy { margin-left: 0; width: 100%; }
  .spec.two-col { grid-template-columns: 1fr; }
  .section-lead { margin-top: -12px; }
}
