/* FixTape — PNW craft meets honest tech */

:root {
  --bg: #FAF9F6;
  --bg-alt: #F0EDE6;
  --fg: #1A1A2E;
  --fg-muted: #6B6B7B;
  --accent: #E8632A;
  --accent-dark: #C44E1A;
  --border: #E0DBD3;
  --white: #FFFFFF;
}

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

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-family: 'DM Sans', sans-serif;
}

/* HERO */
.hero {
  padding: 80px 24px 80px;
  background: var(--bg);
}

.hero-content {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-cta {}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(232, 99, 42, 0.3);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.hero-illustration {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26, 26, 46, 0.12);
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* PROOF */
.proof {
  background: var(--fg);
  color: white;
  padding: 60px 24px;
}

.proof-inner {
  max-width: 900px;
  margin: 0 auto 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  text-align: center;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.proof-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.proof-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

.proof-quote {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.proof-quote blockquote {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 12px;
}

.proof-quote cite {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-style: normal;
}

/* HOW IT WORKS */
.how {
  padding: 100px 24px;
  background: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.how-steps {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.how-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.how-step h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.how-step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-connector {
  padding-top: 20px;
  opacity: 0.5;
}

/* SERVICES */
.services {
  padding: 80px 24px;
  background: var(--bg-alt);
}

.services-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.service-item {
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.2s;
}

.service-item:hover {
  background: #FFF8F5;
}

.service-icon {
  margin-bottom: 16px;
}

.service-item h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.service-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

.services-note {
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 32px;
}

/* PHILOSOPHY */
.philosophy {
  padding: 100px 24px;
  background: var(--bg);
}

.philosophy-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: start;
}

.philosophy-label {
  padding-top: 8px;
}

.philosophy-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.philosophy-content > p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 40px;
}

.philosophy-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.philosophy-point h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.philosophy-point p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* CLOSING */
.closing {
  padding: 100px 24px 120px;
  background: var(--fg);
  color: white;
  text-align: center;
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 40px;
}

.closing-cta {}

.closing-cta .btn-primary {
  background: var(--accent);
  font-size: 17px;
  padding: 16px 36px;
  box-shadow: 0 4px 24px rgba(232, 99, 42, 0.4);
}

.closing-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 20px;
}

/* FOOTER */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-meta {
  font-size: 12px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-lede {
    max-width: 100%;
  }

  .proof-inner {
    flex-direction: column;
    gap: 32px;
  }

  .proof-divider {
    width: 60px;
    height: 1px;
  }

  .how-steps {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .how-step {
    max-width: 320px;
  }

  .step-connector {
    display: none;
  }

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

  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .philosophy-points {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .nav-tagline {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 48px 20px 60px;
  }

  .hero-headline {
    font-size: 34px;
  }

  .services-grid {
    border-radius: 12px;
  }

  .service-item {
    padding: 24px 20px;
  }
}