/* ===================================================================
   Annual Report Time — Pennsylvania LLC Annual Report Filing Service
   Design: government-document trustworthy. Navy + gold seal palette,
   serif headings (official record), mono for figures/dates (stamped
   document feel), warm paper background.
=================================================================== */

:root {
  --navy: #0E2A47;
  --navy-deep: #081b30;
  --gold: #C9A227;
  --gold-light: #E4C765;
  --paper: #F7F4EC;
  --paper-line: #E7E1D0;
  --ink: #1D2126;
  --ink-soft: #4B5560;
  --red-stamp: #9B3A34;
  --green-ok: #2F5D3A;

  --serif: "Source Serif 4", "PT Serif", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a { color: inherit; }

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

/* ---------------- Header ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--paper-line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}

.brand img { width: 42px; height: 42px; }

.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.2px;
  line-height: 1.1;
}

.brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-right: 28px;
}
.main-nav a:last-child { margin-right: 0; }

.main-nav a:hover { color: var(--navy); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 3px;
  padding: 12px 22px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { background: var(--navy-deep); }

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-block { width: 100%; }

/* ---------------- Disclosure bar ---------------- */

.disclosure-bar {
  background: var(--navy-deep);
  color: #C9D2DD;
  font-size: 12.5px;
  text-align: center;
  padding: 7px 12px;
  letter-spacing: 0.2px;
}
.disclosure-bar strong { color: #fff; }

/* ---------------- Hero ---------------- */

.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(201,162,39,0.10), transparent 60%),
    var(--navy);
  color: #fff;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,239,227,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,239,227,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,162,39,0.5);
  padding: 6px 12px;
  border-radius: 2px;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: -0.2px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero p.lede {
  font-size: 17px;
  color: #D6DCE3;
  max-width: 46ch;
  margin: 0 0 30px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #B7C0CC;
  font-family: var(--mono);
}
.hero-trust span { display: flex; align-items: center; gap: 7px; margin-right: 24px; }
.hero-trust span:last-child { margin-right: 0; }
.hero-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }

/* stamped document card */
.doc-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 4px;
  padding: 28px 26px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  position: relative;
  transform: rotate(1.2deg);
}

.doc-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(14,42,71,0.18);
  pointer-events: none;
}

.doc-card .doc-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.doc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--paper-line);
  font-size: 14px;
}
.doc-row:last-of-type { border-bottom: none; }
.doc-row .label { color: var(--ink-soft); }
.doc-row .value { font-family: var(--mono); font-weight: 600; }

.stamp {
  position: absolute;
  right: -10px;
  bottom: -14px;
  transform: rotate(-11deg);
  border: 3px solid var(--red-stamp);
  color: var(--red-stamp);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(155,58,52,0.05);
}

/* ---------------- Section shells ---------------- */

section { padding: 78px 0; }
.section-alt { background: #fff; border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); }

.section-head { max-width: 640px; margin: 0 0 44px; }
.section-head .kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: 32px;
  margin: 0 0 12px;
  color: var(--navy);
  line-height: 1.2;
}
.section-head p { color: var(--ink-soft); font-size: 16px; margin: 0; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------------- Pricing ---------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.price-card {
  background: #fff;
  border: 1.5px solid var(--paper-line);
  border-radius: 6px;
  padding: 32px 30px;
  position: relative;
}

.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 20px 45px -25px rgba(14,42,71,0.35);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 30px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 3px;
  text-transform: uppercase;
}

.price-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--navy);
  margin: 6px 0 4px;
}

.price-card .price-sub { color: var(--ink-soft); font-size: 13.5px; margin-bottom: 18px; }

.price-amount {
  font-family: var(--mono);
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.price-amount span { font-size: 15px; color: var(--ink-soft); font-weight: 500; }

.price-fee-note { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 22px; }

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}
.price-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  padding: 7px 0;
  color: var(--ink);
}
.price-list li .check { color: var(--green-ok); font-weight: 700; flex: none; }

/* ---------------- Table (state fee comparison + requirements) ---------------- */

.gov-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14.5px;
  border: 1px solid var(--paper-line);
}
.gov-table th, .gov-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--paper-line);
}
.gov-table th {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--paper);
}
.gov-table tr:last-child td { border-bottom: none; }
.gov-table td.mono { font-family: var(--mono); }
.gov-table .col-us { font-weight: 700; color: var(--navy); }

/* ---------------- Process ---------------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.process-step {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 6px;
  padding: 26px 24px;
  position: relative;
}
.process-num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--gold);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.process-step h3 {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 8px;
}
.process-step p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* ---------------- Deadline strip ---------------- */

.deadline-strip {
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.deadline-strip .dl-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.deadline-strip .dl-date {
  font-family: var(--serif);
  font-size: 24px;
}

/* ---------------- FAQ ---------------- */

.faq-item {
  border-bottom: 1px solid var(--paper-line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 22px;
  color: var(--gold);
  flex: none;
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 70ch;
}

/* ---------------- CTA band ---------------- */

.cta-band {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 70px 0;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: 30px;
  margin: 0 0 12px;
}
.cta-band p { color: #C9D2DD; margin: 0 0 28px; }

/* ---------------- Footer ---------------- */

.site-footer {
  background: var(--navy-deep);
  color: #9AA7B4;
  padding: 50px 0 26px;
  font-size: 13.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.footer-brand img { width: 30px; height: 30px; }
.footer-brand span { font-family: var(--serif); color: #fff; font-size: 16px; }
.footer-grid h4 {
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-family: var(--mono);
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { text-decoration: none; color: #9AA7B4; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------------- Responsive ---------------- */

@media (max-width: 860px) {
  .main-nav { display: none; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .pricing-grid, .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .doc-card { transform: none; }
}
