/* Hardcorp — hardcorp.net
   Static landing page styles
   Last updated: 2026-04-08 */

/* ---- Reset & Base ---- */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.25;
  color: #0a0a0a;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 1.85rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p {
  margin-bottom: 1rem;
  color: #333;
}

a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: #555;
}

/* ---- Layout ---- */

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

section + section {
  border-top: 1px solid #eee;
}

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

header {
  padding: 1.25rem 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: #0a0a0a;
}

header nav a {
  font-size: 0.875rem;
  color: #555;
  text-decoration: none;
  margin-left: 1.75rem;
}

header nav a:hover {
  color: #0a0a0a;
}

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

.hero {
  padding: 6rem 0 5rem;
  border-top: none;
}

.hero h1 {
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero .subtitle {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* ---- Buttons ---- */

.btn {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.btn-primary {
  background: #0a0a0a;
  color: #fff;
  border: 1px solid #0a0a0a;
}

.btn-primary:hover {
  background: #333;
  border-color: #333;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #0a0a0a;
  border: 1px solid #ccc;
}

.btn-secondary:hover {
  border-color: #0a0a0a;
}

/* ---- Content Sections ---- */

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 1.25rem;
}

/* ---- APC Product Section ---- */

.product-section {
  background: #fafafa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.capabilities-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.capabilities-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  color: #333;
}

.capabilities-list li:last-child {
  border-bottom: none;
}

.capabilities-list li strong {
  color: #0a0a0a;
}

.boundaries-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.boundaries-list li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: #555;
}

.boundaries-list li::before {
  content: "\2013";
  position: absolute;
  left: 0;
  color: #bbb;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.pricing-card {
  padding: 1.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
}

.pricing-card .price {
  font-size: 1.85rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0.25rem;
}

.pricing-card .price-label {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1rem;
}

.pricing-card p {
  font-size: 0.9rem;
  color: #555;
}

.pricing-note {
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.5rem;
}

/* ---- Onboarding Steps ---- */

.steps {
  margin: 2rem 0;
}

.step {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #eee;
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #0a0a0a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.15rem;
}

.step-content h3 {
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}

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

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0a0a0a;
}

.faq-item p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}

/* ---- CTA / Contact ---- */

.cta-section {
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  color: #555;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-email {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a0a0a;
  text-decoration: none;
  border-bottom: 2px solid #0a0a0a;
  padding-bottom: 2px;
}

.cta-email:hover {
  color: #555;
  border-color: #555;
}

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

footer {
  padding: 2rem 0;
  border-top: 1px solid #eee;
  text-align: center;
}

footer p {
  font-size: 0.8rem;
  color: #aaa;
  margin: 0;
}

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

@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  section { padding: 3.5rem 0; }
  .hero { padding: 4rem 0 3.5rem; }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  header nav a {
    margin-left: 1rem;
    font-size: 0.8rem;
  }

  .logo {
    font-size: 1rem;
  }
}
