@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --black: #0a0a0a;
  --white: #f5f4f0;
  --red: #c0392b;
  --red-dark: #962d22;
  --gray: #1a1a1a;
  --gray-mid: #2e2e2e;
  --gray-light: #999;
  --accent: #c0392b;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #1f1f1f;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
}

.logo span { color: var(--red); }

nav a.cta-nav {
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
}

nav a.cta-nav:hover { background: var(--red-dark); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 .strike {
  position: relative;
  color: var(--gray-light);
}

.hero h1 .strike::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 4px;
  background: var(--red);
  transform: rotate(-2deg);
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: #ccc;
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-sub strong { color: var(--white); }

.hero-cta {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 1rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}

.hero-cta:hover { background: var(--red-dark); transform: translateY(-2px); }

.proof-line {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #bbb;
  border-left: 2px solid var(--red);
  padding-left: 1rem;
  line-height: 1.8;
}

/* FOUND ME SECTION */
.found-me {
  background: var(--red);
  padding: 4rem 2rem;
  text-align: center;
}

.found-me h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.found-me p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* SECTIONS */
section {
  padding: 5rem 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--gray);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.service-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 1rem;
  line-height: 1;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.service-card p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* TRUTH SECTION */
.truth {
  background: var(--gray);
  border-radius: 12px;
  padding: 3.5rem;
  margin: 2rem 0;
  border-left: 4px solid var(--red);
}

.truth blockquote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
}

.truth blockquote em {
  color: var(--red);
  font-style: normal;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--gray);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.pricing-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.4rem;
}

.pricing-card .price {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin: 0.5rem 0 0.2rem;
}

.pricing-card .price-label {
  font-size: 0.7rem;
  color: var(--gray-light);
  margin-bottom: 1rem;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-top: 1rem;
  flex: 1;
}

.pricing-card ul li {
  font-size: 0.78rem;
  color: #bbb;
  padding: 0.3rem 0;
  border-bottom: 1px solid #2a2a2a;
  padding-left: 1rem;
  position: relative;
}

.pricing-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.75rem;
}

.pricing-card.featured {
  border-color: var(--red);
  background: #1a0a09;
}

.pricing-card.performance {
  border-color: #333;
  background: #0f0f0f;
}

.pricing-card.performance .price {
  font-size: 1.4rem;
  color: var(--gray-light);
}

.cta-pricing {
  display: block;
  margin-top: 1.5rem;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 0.75rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.cta-pricing:hover { background: var(--red-dark); }

.leads-note {
  margin-top: 2.5rem;
  padding: 2rem;
  background: #0f0f0f;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
  border-left: 4px solid var(--red);
}

.leads-note h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.leads-note p {
  font-size: 0.9rem;
  color: #bbb;
  line-height: 1.8;
}

.leads-note strong { color: #ccc; }

/* GROW NOTE */
.grow-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #111;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
  font-size: 0.95rem;
  color: #ccc;
  text-align: center;
  line-height: 1.8;
}

.grow-note strong { color: var(--white); }

/* ABOUT */
.about-text {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.9;
  max-width: 700px;
}

.about-text p { margin-bottom: 1.5rem; }
.about-text strong { color: var(--white); }

.about-stat {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-top: 0.25rem;
}

/* CONTACT */
.contact-wrap {
  background: var(--gray);
  border-radius: 12px;
  padding: 3.5rem;
  max-width: 600px;
}

.contact-wrap p {
  color: #ccc;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-email {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.contact-email:hover { color: var(--white); border-color: var(--white); }

.contact-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--gray-light);
}

/* FOOTER */
footer {
  border-top: 1px solid #1a1a1a;
  padding: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
}

footer span { color: var(--red); }

/* DIVIDER */
.divider {
  border: none;
  border-top: 1px solid #1a1a1a;
  margin: 0;
}

/* ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: none;
  }
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  nav { padding: 1rem; }
  nav a.cta-nav { 
    padding: 0.4rem 0.8rem; 
    font-size: 0.75rem; 
    white-space: nowrap;
  }
  .logo { font-size: 1rem; }
  .hero { padding: 6rem 1.25rem 3rem; }
  .hero h1 { 
    font-size: 2.2rem;
    word-break: normal;
    overflow-wrap: normal;
  }
  .hero-sub { font-size: 1rem; }
  .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.14em; }
  section { padding: 3rem 1.25rem; }
  .truth { padding: 1.75rem 1.25rem; }
  .contact-wrap { padding: 2rem 1.25rem; }
  .about-stat { gap: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .found-me { padding: 3rem 1.25rem; }
  .section-title { font-size: clamp(1.6rem, 8vw, 2.2rem); }
}
