/* SignRight Theme */
:root {
  --bg: #FAFAF8;
  --bg-alt: #F0EEE8;
  --fg: #1B2B4B;
  --fg-muted: #5C6880;
  --accent: #D4900A;
  --accent-light: #FFF3D6;
  --white: #FFFFFF;
  --border: #E0DDD6;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.site-header nav {
  display: flex;
  gap: 32px;
}
.site-header nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.site-header nav a:hover { color: var(--fg); }

/* HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}
.meta-item { display: flex; flex-direction: column; }
.meta-stat {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.meta-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.meta-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* HERO VISUAL */
.hero-visual { display: flex; flex-direction: column; gap: 20px; }
.badge-stack { display: flex; flex-direction: column; gap: 10px; }
.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  width: fit-content;
}
.badge-primary {
  background: var(--accent-light);
  border-color: rgba(212, 144, 10, 0.3);
}
.hero-card {
  background: var(--fg);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 10px;
}
.card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.card-detail {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

/* SECTIONS */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-header { margin-bottom: 56px; }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--fg);
  max-width: 560px;
}

/* HOW IT WORKS */
.how-it-works {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
}
.how-it-works .section-header { max-width: 1200px; margin: 0 auto 56px; }
.steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step { padding: 0 24px 0 0; }
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.step-connector {
  width: 48px;
  height: 1px;
  background: var(--border);
  align-self: center;
  margin-top: 24px;
}

/* DIFFERENTIATION */
.differentiation { padding: 80px 24px; }
.diff-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.diff-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 16px;
}
.diff-sub {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.diff-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.diff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}
.diff-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.diff-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.diff-card-body {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* SERVICE AREA */
.service-area {
  background: var(--fg);
  color: var(--white);
  padding: 80px 24px;
}
.sa-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sa-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.sa-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.coverage-list { display: flex; flex-direction: column; gap: 12px; }
.coverage-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
}
.coverage-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.coverage-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 4px 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
}
.coverage-tag.primary { color: var(--accent); background: rgba(212,144,10,0.15); }
.sa-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.sa-note svg { flex-shrink: 0; margin-top: 1px; }

/* CLOSING */
.closing {
  background: var(--accent);
  padding: 80px 24px;
}
.closing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.closing-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.closing-body {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.65;
}
.closing-stat-row {
  display: flex;
  justify-content: center;
  gap: 64px;
}
.closing-stat { text-align: center; }
.c-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
}
.c-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* FOOTER */
.site-footer {
  background: var(--fg);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-brand .wordmark {
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-meta {
  text-align: right;
}
.footer-meta p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
}
.footer-copy { margin-top: 8px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .step-connector { display: none; }
  .diff-inner { grid-template-columns: 1fr; gap: 40px; }
  .sa-inner { grid-template-columns: 1fr; gap: 40px; }
  .closing-stat-row { flex-direction: column; gap: 32px; }
  .site-header nav { display: none; }
  .footer-inner { flex-direction: column; }
  .footer-meta { text-align: left; }
}
@media (max-width: 600px) {
  .hero { padding: 56px 20px 40px; }
  .how-it-works, .differentiation, .service-area, .closing { padding: 56px 20px; }
  .diff-cards { grid-template-columns: 1fr; }
  .hero-meta { gap: 16px; }
  .meta-stat { font-size: 22px; }
}