/* PremiumPDF Vault - static theme */
:root {
  --bg0: #070b12;
  --bg1: #0b1220;
  --card: rgba(255, 255, 255, .06);
  --card2: rgba(255, 255, 255, .08);
  --stroke: rgba(255, 255, 255, .12);
  --text: rgba(255, 255, 255, .92);
  --muted: rgba(255, 255, 255, .72);
  --muted2: rgba(255, 255, 255, .55);
  --accent: #34d399;
  --accent2: #60a5fa;
  --accent3: #a78bfa;
  --shadow: 0 22px 80px rgba(0, 0, 0, .55);
  --radius: 18px;
}

* {
  box-sizing: border-box
}

html, body {
  height: 100%
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(900px 520px at 20% 10%, rgba(52, 211, 153, .15), transparent 55%),
  radial-gradient(900px 520px at 80% 0%, rgba(96, 165, 250, .14), transparent 55%),
  radial-gradient(900px 520px at 70% 85%, rgba(167, 139, 250, .12), transparent 55%),
  linear-gradient(180deg, var(--bg1), var(--bg0));
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
  font-size: 12px;
}

.pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  font-weight: 650;
  font-size: 13px;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .18)
}

.btn.primary {
  border-color: rgba(52, 211, 153, .35);
  background: linear-gradient(135deg, rgba(52, 211, 153, .18), rgba(96, 165, 250, .14));
}

.btn.primary:hover {
  border-color: rgba(52, 211, 153, .55)
}

.btn.ghost {
  background: transparent
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(11, 18, 32, .85), rgba(11, 18, 32, .55));
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted2);
  font-size: 13px
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 10px
}

.nav-links a:hover {
  background: rgba(255, 255, 255, .06);
  color: var(--text)
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.brand img {
  height: 28px;
  width: 180px;
}

.hero {
  padding: 52px 0 28px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: stretch;
}

h1 {
  margin: 14px 0 10px;
  font-size: 44px;
  line-height: 1.07;
  letter-spacing: -.02em;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 64ch;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px
}

.badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  color: var(--muted2);
  background: rgba(255, 255, 255, .04);
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card.pad {
  padding: 18px
}

.card h3 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .01em
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(52, 211, 153, .35);
  background: rgba(52, 211, 153, .12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 2px;
}

.check svg {
  width: 12px;
  height: 12px
}

.kbd {
  font-size: 12px;
  color: rgba(11, 18, 32, .92);
  background: linear-gradient(135deg, rgba(52, 211, 153, .8), rgba(96, 165, 250, .75));
  border-radius: 10px;
  padding: 3px 8px;
  font-weight: 800;
}

.note {
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(52, 211, 153, .25);
  background: rgba(52, 211, 153, .08);
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  line-height: 1.55;
}

.media {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.media img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .25);
}

.section {
  padding: 16px 0 26px
}

.section-title {
  margin: 0 0 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, .86);
}

.subscribe {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.input {
  min-width: 240px;
  flex: 1 1 240px;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .22);
  color: var(--text);
  outline: none;
}

.input::placeholder {
  color: rgba(255, 255, 255, .40)
}

.small {
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.5
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
}

.mini h4 {
  margin: 0 0 6px;
  font-size: 13px
}

.mini p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .10);
}

.table th, .table td {
  padding: 12px 12px;
  font-size: 13px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.table th {
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
  background: rgba(255, 255, 255, .04)
}

.table td {
  color: rgba(255, 255, 255, .72)
}

.footer {
  padding: 22px 0 34px;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
}

.footer a {
  color: rgba(255, 255, 255, .72)
}

.footer a:hover {
  text-decoration: underline
}

.hr {
  height: 1px;
  background: rgba(255, 255, 255, .10);
  margin: 18px 0
}

.page-title {
  padding: 30px 0 10px
}

.page-title h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.01em
}

.page-title p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.textarea {
  min-height: 120px;
  resize: vertical
}

.alert {
  display: none;
  margin-top: 12px;
  border: 1px solid rgba(52, 211, 153, .25);
  background: rgba(52, 211, 153, .08);
  border-radius: 14px;
  padding: 12px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  line-height: 1.5;
}

.alert.show {
  display: block
}

@media (max-width: 940px) {
  h1 {
    font-size: 38px
  }

  .hero-grid {
    grid-template-columns: 1fr
  }

  .split {
    grid-template-columns: 1fr
  }

  .grid-3 {
    grid-template-columns: 1fr
  }

  .nav-links {
    display: none
  }

  .form-grid {
    grid-template-columns: 1fr
  }
}
