/* Above-the-fold: header, layout shell, homepage hero (LCP) */
:root {
  --bs-primary: #ff6b35;
  --rp-font-sans: 'Hind', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --rp-font-size-base: 1rem;
  --rp-font-line-height: 1.6;
  --bs-body-font-family: var(--rp-font-sans);
  --bs-body-font-size: var(--rp-font-size-base);
  --bs-body-line-height: var(--rp-font-line-height);
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: var(--rp-font-sans);
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--rp-font-sans);
  font-size: var(--rp-font-size-base);
  line-height: var(--rp-font-line-height);
  color: #333;
  background-color: #f8f9fa;
}

.header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 0.875rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem 0 1.25rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 1400px) {
  .header-container {
    max-width: 1400px;
    padding: 0 1.5rem;
  }
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  letter-spacing: 0.5px;
}

.brand-logo span {
  font-weight: 400;
  opacity: 0.95;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.rp-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 3.5rem 0 2.25rem;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  margin: -1.5rem 0 2rem;
}

.rp-hero-inner {
  position: relative;
  z-index: 1;
}

.rp-hero h1 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.25;
}

.rp-hero .lead {
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

.rp-kicker {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .header {
    background: linear-gradient(135deg, #7a8ef5 0%, #8a5fb8 100%);
  }

  .header-container {
    padding: 0 1rem;
  }

  .container {
    padding: 1rem;
  }

  .rp-hero {
    padding: 2.5rem 0 1.75rem;
  }
}
