/* ================================================================================
   Titanium Readers — Global Styles
   Last Updated: May 29, 2026
   ================================================================================ */

/* ---- Reset & base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #1a1a2e;
  background-color: #ffffff;
  line-height: 1.6;
}

/* ---- Typography ---- */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Header ---- */
.site-header {
  padding: 1.25rem 0;
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
}

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

.site-header .brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #1a1a2e;
}

.site-header .brand span {
  color: #c0932f;
}

/* ---- Hero section ---- */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: #c0932f;
}

.hero .subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.badge-coming-soon {
  display: inline-block;
  background: #1a1a2e;
  color: #c0932f;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

/* ---- Features section ---- */
.features {
  padding: 4rem 0;
  background: #f8f7f4;
}

.features h2 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 2.5rem;
  color: #1a1a2e;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-align: center;
}

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
}

.feature-card p {
  font-size: 0.95rem;
  color: #666;
}

/* ---- CTA section ---- */
.cta-section {
  padding: 4.5rem 0;
  text-align: center;
}

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

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

.btn-primary {
  display: inline-block;
  background: #c0932f;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 2.25rem;
  border-radius: 8px;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: #a67a24;
}

/* ---- Footer ---- */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid #e8e8e8;
  text-align: center;
  font-size: 0.875rem;
  color: #888;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
  .hero {
    padding: 3rem 0 2.5rem;
  }
}
