/* /founder — стиль в эстетике agent-target.com
   Палитра: фон #131d29, акцент #fab61f, текст #ffffff
   Шрифт: Montserrat (400/500/600/700/800)
   Без рамок и фоновых панелей вокруг фото (по просьбе Оли 18:06 UTC)
   Без ИИ-штампов (правило 0.7.88, 0.7.123)
*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  background: #131d29;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #fab61f;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

.section__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

/* ---------------- HERO ---------------- */

.hero {
  padding: 100px 0 80px;
  background: #131d29;
  overflow: hidden;
  position: relative;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

.hero__text {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fab61f;
  margin-bottom: 20px;
}

.hero__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.hero__role {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: #fab61f;
  margin-bottom: 28px;
}

.hero__lead {
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: 0;
}

.hero__photo {
  position: relative;
  z-index: 1;
  width: 280px;
  flex-shrink: 0;
  overflow: visible;
}

.hero__photo img {
  width: 280px;
  height: auto;
  display: block;
  object-fit: cover;
  /* Без рамки, без фона, без фоновой плашки — фото просто встроено в страницу */
  box-shadow: none;
  border: none;
  background: transparent;
}

/* ---------------- CTA BUTTON ---------------- */

.cta {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  border-radius: 0; /* без скруглений — стиль документальный, не инфобиз */
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.cta--primary {
  background: transparent;
  color: #fab61f;
  border: 1px solid #fab61f;
}

.cta--primary:hover {
  background: #fab61f;
  color: #131d29;
  opacity: 1;
}

.cta--secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cta--secondary:hover {
  border-color: #fab61f;
  color: #fab61f;
  opacity: 1;
}

.hero__text .cta {
  align-self: flex-start;
  margin-top: 32px;
}

/* ---------------- ABOUT ---------------- */

.about {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about__text {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 760px;
}

/* ---------------- PRINCIPLES ---------------- */

.principles {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.principles__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  counter-reset: principle;
}

.principles__item {
  counter-increment: principle;
  position: relative;
  padding-left: 56px;
}

.principles__item::before {
  content: counter(principle);
  position: absolute;
  left: 0;
  top: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #fab61f;
  line-height: 1;
}

.principles__item h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.principles__item p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------------- PRODUCTS ---------------- */

.products {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.product {
  /* без рамок и фоновых плашек — документальный стиль */
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.product h3 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.product__lede {
  font-size: 14px;
  font-weight: 600;
  color: #fab61f;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.product__link {
  font-size: 14px;
  font-weight: 600;
  color: #fab61f;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.product__link:hover {
  border-bottom-color: #fab61f;
  opacity: 1;
}

/* ---------------- PODCAST ---------------- */

.podcast {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.podcast__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.podcast__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fab61f;
  margin-bottom: 16px;
}

.podcast__text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.podcast__player {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.podcast__placeholder {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  padding: 40px 0;
  letter-spacing: 1px;
}

.podcast__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}

.podcast__link {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 0;
  transition: all 0.2s ease;
}

.podcast__link:hover {
  border-color: #fab61f;
  color: #fab61f;
  opacity: 1;
}

/* ---------------- REVIEWS ---------------- */

.reviews {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reviews__placeholder {
  padding: 48px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------------- SOCIAL ---------------- */

.social {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social__lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 600px;
}

.social__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social__link {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 0;
  transition: all 0.2s ease;
}

.social__link:hover {
  border-color: #fab61f;
  color: #fab61f;
  opacity: 1;
}

/* ---------------- FINAL CTA ---------------- */

.final-cta {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.final-cta__container {
  max-width: 640px;
}

.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

/* ---------------- FOOTER ---------------- */

.site-footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.site-footer p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.site-footer__small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 900px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .hero__photo {
    width: 200px;
    margin: 0 auto;
  }

  .hero__photo img {
    width: 200px;
  }

  .principles__list,
  .products__grid,
  .podcast__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 60px 0 48px;
  }

  .hero__container {
    padding: 0 20px;
  }

  .hero__photo {
    width: 160px;
  }

  .hero__photo img {
    width: 160px;
  }

  .hero__name {
    font-size: 36px;
  }

  .section__title {
    font-size: 28px;
  }

  .cta {
    width: 100%;
    text-align: center;
  }

  .social__link,
  .podcast__link {
    flex: 1 1 calc(50% - 6px);
    text-align: center;
  }
}
