/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0B1D2E;
  --navy-mid:   #12243A;
  --ivory:      #F5F0E8;
  --ivory-dark: #EDE8DC;
  --copper:     #C4783A;
  --copper-lt:  #D4915A;
  --text-dark:  #1A1A1A;
  --text-mid:   #4A4A4A;
  --text-light: #8A8A8A;
  --white:      #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--ivory);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--copper); color: var(--white); }

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 29, 46, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  background: var(--navy);
  padding: 7rem 2rem 6rem;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--copper) 0%, #8B4F1A 100%);
  opacity: 0.18;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: 1.1rem;
  color: rgba(245, 240, 232, 0.72);
  max-width: 480px;
  line-height: 1.65;
  font-weight: 300;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-texture {
  width: 100%;
  aspect-ratio: 4/3;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(196, 120, 58, 0.4) 0%, transparent 60%),
    linear-gradient(145deg, #1a3a5c 0%, #0B1D2E 50%, #1a3050 100%);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.hero-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C4783A' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-texture::after {
  content: 'GleamForce';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(245, 240, 232, 0.08);
  letter-spacing: 0.06em;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 6rem 2rem;
  background: var(--white);
}
.section-header {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  max-width: 600px;
  letter-spacing: -0.01em;
}
.steps-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.step {
  border-top: 2px solid var(--ivory-dark);
  padding-top: 1.8rem;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 0.8rem;
  opacity: 0.6;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.step-body {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 6rem 2rem;
  background: var(--ivory);
  border-top: 1px solid var(--ivory-dark);
}
.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
}
.philosophy-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.philosophy-headline em {
  color: var(--copper);
  font-style: italic;
}
.philosophy-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.philosophy-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 2rem;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}
.pillar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

/* === PRICING === */
.pricing-preview {
  padding: 6rem 2rem;
  background: var(--navy);
}
.pricing-preview .section-eyebrow { color: var(--copper-lt); }
.pricing-preview .section-title { color: var(--ivory); }
.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: 8px;
  padding: 2.2rem 2rem;
}
.pricing-card--featured {
  background: rgba(196, 120, 58, 0.12);
  border-color: rgba(196, 120, 58, 0.35);
}
.card-tier {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-lt);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}
.card-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
.card-services li {
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.75);
  padding-left: 1rem;
  position: relative;
}
.card-services li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
}
.card-note {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.4);
  font-style: italic;
}

/* === CLOSING === */
.closing {
  background: linear-gradient(160deg, var(--copper) 0%, #8B4F1A 100%);
  padding: 7rem 2rem;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.closing-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  background: var(--navy);
  padding: 3rem 2rem 2.5rem;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ivory);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-desc {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.4);
  max-width: 300px;
  line-height: 1.55;
}
.footer-meta p {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.3);
  text-align: right;
  line-height: 1.7;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner,
  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual { display: none; }
  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .pricing-card--featured { order: -1; }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-meta p { text-align: left; }
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .how-it-works,
  .philosophy,
  .pricing-preview { padding: 4rem 1.5rem; }
  .closing { padding: 4.5rem 1.5rem; }
  .nav-tagline { display: none; }
}