/* LEADFinder - Neo-Brutalist Orange Theme */

:root {
  --orange: #FF6B35;
  --orange-dark: #E85A28;
  --bg: #F5F0EB;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --border: 3px;
  --sx: 6px;
  --sy: 6px;
  --ff-h: 'Bebas Neue', sans-serif;
  --ff-b: 'DM Sans', sans-serif;
  --ff-m: 'Space Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-b);
  background-color: var(--bg);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--orange);
  color: var(--black);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 1.5rem; }

.section__tag {
  display: inline-block;
  font-family: var(--ff-b);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 0.75rem;
  border: var(--border) solid var(--black);
  padding: 0.3rem 0.75rem;
}

.section__title {
  font-family: var(--ff-h);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
}

.section__title span { color: var(--orange); }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  border-bottom: var(--border) solid var(--black);
  padding: 0.75rem 0;
}

.nav--scrolled { box-shadow: var(--sx) var(--sy) 0 0 var(--black); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav__brand-text {
  font-family: var(--ff-h);
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.nav__brand-lead {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  padding: 0.1em 0.3em;
}

.nav__brand-finder { color: var(--black); }

.nav__links { display: flex; align-items: center; gap: 2rem; }

.nav__link {
  font-family: var(--ff-b);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  transition: color 0.15s ease;
}

.nav__link:hover {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav__link--active {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--orange);
  color: var(--white);
  border: var(--border) solid var(--black);
  font-family: var(--ff-b);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: var(--sx) var(--sy) 0 0 var(--black);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav__cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 0 var(--black);
}

.nav__cta:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 0 var(--black);
}

.nav__cta svg { width: 16px; height: 16px; }
.nav__cta-desktop { display: inline-flex; }

.nav__burger {
  display: none;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: var(--border) solid var(--black);
}

.nav__burger svg { width: 24px; height: 24px; color: var(--black); }

.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.nav__mobile.is-open {
  display: flex;
  transform: translateY(0);
}

.nav__mobile .nav__link {
  font-family: var(--ff-h);
  font-size: 2rem;
  text-transform: uppercase;
}


/* HERO */
.hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: var(--border) solid var(--black);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  background: var(--white);
  box-shadow: var(--sx) var(--sy) 0 0 var(--black);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border: 2px solid var(--black);
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero__title {
  font-family: var(--ff-h);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 1.25rem;
}

.hero__title span { color: var(--orange); }

.hero__description {
  max-width: 500px;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #333;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__stats { display: flex; flex-wrap: wrap; gap: 1.5rem; }

.hero__stat {
  border: var(--border) solid var(--black);
  padding: 0.75rem 1.25rem;
  background: var(--white);
  box-shadow: var(--sx) var(--sy) 0 0 var(--black);
}

.hero__stat-value {
  font-family: var(--ff-h);
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 900;
  color: var(--orange);
}

.hero__stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #555;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__frame {
  border: var(--border) solid var(--black);
  box-shadow: 10px 10px 0 0 var(--black);
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  background: var(--white);
}

.hero__frame img { width: 100%; display: block; }

.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: var(--border) solid var(--black);
  padding: 0.5rem 0.85rem;
  box-shadow: var(--sx) var(--sy) 0 0 var(--black);
  animation: float 4s ease-in-out infinite;
  font-family: var(--ff-b);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.hero__float svg { width: 20px; height: 20px; flex-shrink: 0; }

.hero__float--1 { top: 10%; right: -5%; animation-delay: 0s; }
.hero__float--2 { bottom: 15%; left: -5%; animation-delay: 1.5s; }
.hero__float--3 { top: 55%; right: -10%; animation-delay: 3s; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--ff-b);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: var(--border) solid var(--black);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--sx) var(--sy) 0 0 var(--black);
}

.btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 0 var(--black);
}

.btn--primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 0 var(--black);
}

.btn--secondary {
  background: var(--white);
  color: var(--black);
  box-shadow: var(--sx) var(--sy) 0 0 var(--black);
}

.btn--secondary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 0 var(--black);
}

.btn--secondary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 0 var(--black);
}

.btn--large { padding: 1rem 2.25rem; font-size: 1rem; }


/* FEATURES */
.features {
  background: var(--white);
  border-top: var(--border) solid var(--black);
  border-bottom: var(--border) solid var(--black);
}

.features__header { text-align: center; margin-bottom: 3rem; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border: var(--border) solid var(--black);
  padding: 2rem;
  box-shadow: var(--sx) var(--sy) 0 0 var(--black);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feature-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 0 var(--black);
}

.feature-card--accent { background: var(--orange); color: var(--white); }
.feature-card--accent .feature-card__desc { color: rgba(255, 255, 255, 0.9); }
.feature-card--accent .feature-card__icon { background: var(--white); }

.feature-card__icon {
  width: 56px;
  height: 56px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border) solid var(--black);
  margin-bottom: 1.25rem;
  box-shadow: var(--sx) var(--sy) 0 0 var(--black);
}

.feature-card__icon svg { width: 28px; height: 28px; }

.feature-card__title {
  font-family: var(--ff-h);
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.feature-card__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* SCREENSHOTS */
.screenshots { background: var(--bg); }
.screenshots__header { text-align: center; margin-bottom: 3rem; }

.screenshots__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.screenshot-card {
  border: var(--border) solid var(--black);
  box-shadow: var(--sx) var(--sy) 0 0 var(--black);
  overflow: hidden;
  background: var(--white);
}

.screenshot-card__badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  border-bottom: var(--border) solid var(--black);
  background: var(--white);
}

.screenshot-card__badge-text {
  font-family: var(--ff-b);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
}

.screenshot-card__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border: 2px solid var(--black);
  display: inline-block;
}

.screenshot-card__body { line-height: 0; }
.screenshot-card__body img { width: 100%; display: block; }


/* HOW IT WORKS */
.how {
  background: var(--white);
  border-top: var(--border) solid var(--black);
  border-bottom: var(--border) solid var(--black);
}

.how__header { text-align: center; margin-bottom: 3rem; }

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  position: relative;
  border: var(--border) solid var(--black);
  padding: 2.5rem 2rem 2rem;
  background: var(--white);
  box-shadow: var(--sx) var(--sy) 0 0 var(--black);
  overflow: hidden;
}

.step__number {
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: var(--ff-h);
  font-size: 120px;
  line-height: 1;
  color: var(--orange);
  opacity: 0.15;
  font-weight: 900;
  pointer-events: none;
}

.step__content {
  position: relative;
  z-index: 1;
}

.step__label {
  font-family: var(--ff-m);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.step__title {
  font-family: var(--ff-h);
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.step__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 0.75rem;
}

.step__code {
  display: block;
  font-family: var(--ff-m);
  font-size: 0.78rem;
  background: var(--black);
  color: var(--orange);
  padding: 0.85rem 1rem;
  margin-top: 1rem;
  text-align: left;
  word-break: break-all;
  border: var(--border) solid var(--black);
  line-height: 1.7;
}

.step__code-comment { color: rgba(255, 255, 255, 0.5); }

/* CTA */
.cta {
  text-align: center;
  padding: 5rem 1.5rem;
  background: var(--orange);
}

.cta__title {
  font-family: var(--ff-h);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.cta .btn--primary {
  background: var(--white);
  color: var(--black);
}

.cta .btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 0 var(--black);
}

.cta .btn--primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 0 var(--black);
}


/* FOOTER */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 1.5rem 1.5rem;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.footer__logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer__brand-text {
  font-family: var(--ff-h);
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--white);
}

.footer__brand-lead {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  padding: 0.1em 0.3em;
}

.footer__brand-finder { color: var(--white); }

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 350px;
}

.footer__links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.footer__link {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.footer__link:hover { color: var(--orange); }

.footer__bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: var(--border) solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__copy { color: rgba(255, 255, 255, 0.4); }

.footer__license { color: rgba(255, 255, 255, 0.4); }

.footer__license a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__license a:hover { color: var(--white); }

.footer__credit {
  color: rgba(255, 255, 255, 0.4);
}

.footer__credit a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__credit a:hover { color: var(--white); }

/* KEYFRAMES */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* MEDIA QUERIES */
@media (max-width: 1024px) {
  .features__grid,
  .screenshots__grid,
  .how__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta-desktop { display: none; }
  .nav__burger { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__description { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { width: 100%; }
  .hero__float { display: none; }

  .features__grid,
  .screenshots__grid,
  .how__steps {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__tagline { max-width: 100%; }
  .footer__links { justify-content: center; }
  .footer__bottom { justify-content: center; text-align: center; }
}
