/* QuickReports landing page
   Inherits CrestonGE corporate palette (dark base + brand purple) per
   /Developer/crestonge/crestonge-web/public/styles.css. Differentiation
   from the parent site is carried by copy and structure, not palette
   divergence. */

:root {
  --background: #0A0A0F;
  --surface: #141420;
  --surface-elevated: #1A1A28;
  --border: rgba(255, 255, 255, 0.06);
  --divider: rgba(255, 255, 255, 0.04);

  --text-primary: #FFFFFF;
  --text-body: #E8E6F0;
  --text-secondary: #9896AD;
  --text-tertiary: #8B8A9E;
  --text-muted: #6B6A82;

  --brand-purple: #7C3AED;
  --brand-purple-light: #A78BFA;

  --radius-card: 16px;
  --radius-pill: 9999px;

  --font-stack: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
                system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--background);
  color: var(--text-body);
  font-family: var(--font-stack);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--divider);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wordmark {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 96px 0 72px;
  text-align: center;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-purple-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.hero h1 {
  font-size: clamp(30px, 4.8vw, 48px);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 auto 24px;
  max-width: 22ch;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-body);
  max-width: 64ch;
  margin: 0 auto 28px;
}
.status-pill {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--brand-purple);
  border-radius: var(--radius-pill);
  color: var(--brand-purple-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

/* Sections */
.section {
  padding: 64px 0;
  border-top: 1px solid var(--divider);
}
.section h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.015em;
  margin: 0 0 28px;
  text-align: center;
}

/* Feature grid */
.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.feature-card p {
  font-size: 15px;
  color: var(--text-body);
  margin: 0;
  line-height: 1.55;
}

/* How it works */
.content-section { background: var(--background); }
.how-it-works h2 { text-align: center; margin: 0 0 28px; }
.steps {
  list-style: decimal;
  padding-left: 22px;
  max-width: 64ch;
  margin: 0 auto;
}
.steps li {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 14px;
  line-height: 1.6;
  text-align: left;
}
.steps li:last-child { margin-bottom: 0; }
.steps li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Trust section */
.trust-section { text-align: center; }
.trust-prose {
  font-size: 16px;
  color: var(--text-body);
  margin: 0 auto 18px;
  max-width: 64ch;
  text-align: left;
}
.trust-prose:last-child { margin-bottom: 0; }
.inline-link {
  color: var(--brand-purple-light);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
}
.inline-link:hover {
  color: var(--text-primary);
  border-color: var(--brand-purple-light);
}

/* Access (CTA) */
.access-section { text-align: center; }
.access-section p {
  font-size: 16px;
  color: var(--text-body);
  margin: 0 auto 18px;
  max-width: 56ch;
}
.cta {
  display: inline-block;
  padding: 12px 24px;
  background: var(--brand-purple);
  color: var(--text-primary);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.cta:hover { background: var(--brand-purple-light); color: var(--background); }
.cta:focus-visible {
  outline: 2px solid var(--brand-purple-light);
  outline-offset: 3px;
}

/* Footer */
.site-footer {
  padding: 40px 0 56px;
  border-top: 1px solid var(--divider);
  margin-top: 32px;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.footer-brand {
  font-size: 13px;
  color: var(--text-tertiary);
  margin: 0;
  letter-spacing: 0.01em;
}
.footer-links {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}
.footer-links a {
  color: var(--text-body);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
}
.footer-links a:hover {
  color: var(--brand-purple-light);
  border-color: var(--brand-purple-light);
}

/* Default link styling */
a { color: var(--brand-purple-light); }
a:hover { color: var(--text-primary); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
