/*
Theme Name: Mitolyn Landing Theme
Theme URI: https://yourdomain.com
Author: You
Author URI: https://yourdomain.com
Description: A lightweight WordPress landing page theme for promoting MITOLYN — perfect for Google Ads.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: mitolyn-theme
*/

/* BASIC BODY */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
}

/* General styling so WP does not override */
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1100px; margin: auto; padding: 20px; }

/* HERO GRID */
.hero { display: grid; grid-template-columns: 1fr 0.9fr; gap: 30px; align-items: center; }
@media(max-width:900px) { .hero { grid-template-columns: 1fr; } }

/* IMAGE */
.hero-img-box {
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.hero-img-box img { width: 100%; border-radius: 16px; }

/* BUTTON */
.btn-primary {
  display: inline-flex;
  padding: 12px 22px;
  margin-top: 12px;
  background: linear-gradient(135deg, #fb923c, #f97316);
  font-weight: 700;
  color: #1b1307;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(248,162,59,0.4);
}

/* SECTION */
.section {
  margin-top: 40px;
  padding: 24px;
  background: #020617;
  border-radius: 20px;
  border: 1px solid #1f2937;
}

/* BENEFIT GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 20px;
}
.benefit {
  background: #0f172a;
  border: 1px solid #1f2937;
  border-radius: 14px;
  padding: 16px;
}
.benefit img { width: 55px; margin-bottom: 8px; }

/* STEPS */
.step {
  padding: 16px;
  border: 1px dashed #1f2937;
  border-radius: 12px;
  background: rgba(15,23,42,0.8);
}
.step img { width: 100%; border-radius: 10px; margin-bottom: 8px; }

/* TESTIMONIALS */
.testimonial {
  background: #0f172a;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #1e293b;
}
.testimonial img {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  margin-bottom: 8px;
  border: 2px solid #334155;
}

/* CTA STRIP */
.cta-strip {
  margin-top: 40px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(to right, #0f766e, #0f172a);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.cta-strip img {
  width: 180px;
  border-radius: 14px;
  border: 1px solid #1e293b;
}
@media(max-width:700px){
  .cta-strip { flex-direction: column; text-align:center; }
}
