:root {
  --navy: #0b1d36;
  --gold: #c9a84c;
  --teal: #00c2b2;
  --surface: #f4f6f8;
  --font-heading: "DM Sans", sans-serif;
  --font-body: "Open Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--navy);
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

.component-frame {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.component-frame--nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
}

.component-frame--standard {
  min-height: 0;
  background: #0b1d36;
}

.component-frame--pricing {
  min-height: 520px;
}

.component-frame--stat-bar {
  min-height: 132px;
}

.component-frame--trust-strip {
  min-height: 72px;
}

.component-frame--footer {
  min-height: 480px;
}

.component-shell {
  position: relative;
  width: 100%;
}

.component-shell--standard,
.component-shell--pricing,
.component-shell--stat-bar,
.component-shell--trust-strip,
.component-shell--footer {
  overflow: hidden;
}

.component-shell--standard {
  background: #0b1d36;
}

main {
  padding-top: 68px;
}

.hero {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 32px 32px;
  text-align: center;
}

.hero-label {
  margin-bottom: 16px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 32px !important;
  font-weight: 700;
  line-height: 1.3;
}

.hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.6;
}

.hero-meta {
  margin-top: 16px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 13px;
}

.hero-meta strong {
  color: var(--gold);
  font-weight: 600;
}

.hero-update {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.viewer-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.pages {
  display: flex;
  max-width: 1008px;
  margin: 0 auto;
  padding: 0 24px 48px;
  flex-direction: column;
  gap: 8px;
}

.pdf-page {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pdf-sheet {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  border-radius: 2px;
  background: var(--surface);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.pdf-sheet canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

.pdf-sheet .textLayer {
  position: absolute;
  inset: 0;
  transform-origin: 0 0;
}

.cta {
  padding: 56px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.cta h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
}

.cta p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

.cta .component-shell--pricing {
  margin: 0 auto 20px;
}

@media (max-width: 768px) {
  .component-frame--nav {
    height: 64px;
  }

  main {
    padding-top: 64px;
  }

  .hero {
    padding: 36px 20px 28px;
  }

  .hero h1 {
    font-size: 24px !important;
  }

  .pages {
    padding: 0 12px 32px;
  }
}
