/* KYRO.PUB Landing Styles */
:root {
  --bg-primary: #0d0e10;
  --bg-secondary: #111216;
  --accent: #e23535;
  --accent-hover: #ff4545;
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --card: rgba(17, 18, 22, 0.75);
  --border: rgba(226, 53, 53, 0.25);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

a { color: var(--text); text-decoration: none; transition: color var(--transition), transform var(--transition); }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; display: block; }

.section { padding: 96px 0; position: relative; overflow: hidden; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.eyebrow { letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 700; font-size: 12px; margin-bottom: 12px; }

h1, h2, h3, h4 { margin: 0 0 16px; font-weight: 800; color: var(--text); }
h1 { font-size: 48px; line-height: 1.1; }
h2 { font-size: 36px; }
h3 { font-size: 22px; }
.lead { color: var(--text-muted); font-size: 18px; margin-bottom: 24px; }
.subhead { color: var(--text-muted); max-width: 640px; }

.btn-primary-cta, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  transition: all var(--transition);
  border: 1px solid transparent;
  box-shadow: none;
}

.btn-primary-cta {
  background: linear-gradient(120deg, var(--accent), var(--accent-hover));
  color: var(--text);
  box-shadow: 0 10px 30px rgba(226, 53, 53, 0.35);
}

.btn-primary-cta:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 18px 40px rgba(226, 53, 53, 0.45); }

.btn-ghost {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent-hover); transform: translateY(-2px); }

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.scrolled .header { background: rgba(13, 14, 16, 0.9); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); backdrop-filter: blur(8px); padding: 12px 0; }

.logo { font-weight: 800; font-size: 20px; letter-spacing: 0.08em; display: inline-flex; align-items: center; gap: 4px; }
.logo-img { height: 32px; width: auto; display: block; }
.logo-fallback { position: absolute; left: -9999px; }

.navmenu ul { display: flex; align-items: center; gap: 18px; list-style: none; margin: 0; padding: 0; }
.navmenu a { color: var(--text-muted); font-weight: 600; position: relative; padding: 6px 0; }
.navmenu a.active, .navmenu a:hover { color: var(--text); }
.navmenu a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.navmenu a:hover::after, .navmenu a.active::after { transform: scaleX(1); }
.mobile-nav-toggle { display: none; color: var(--text); font-size: 26px; cursor: pointer; }

.hero { padding-top: 140px; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(226, 53, 53, 0.15), transparent 40%), radial-gradient(circle at 80% 0%, rgba(226, 53, 53, 0.18), transparent 35%), linear-gradient(135deg, rgba(17, 18, 22, 0.8), rgba(13, 14, 16, 0.95)); pointer-events: none; overflow: hidden; }
.grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(circle at center, rgba(0,0,0,0.8), transparent 75%); }
.particle { position: absolute; width: 160px; height: 160px; border-radius: 50%; filter: blur(40px); opacity: 0.5; animation: float 12s ease-in-out infinite; }
.particle-1 { background: rgba(226, 53, 53, 0.35); top: 20%; left: 10%; }
.particle-2 { background: rgba(226, 53, 53, 0.25); bottom: 10%; right: 15%; animation-delay: 2s; }
.particle-3 { background: rgba(255, 69, 69, 0.18); top: 50%; right: 45%; animation-delay: 4s; }

.hero-center { max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hero-logo { height: 64px; width: auto; margin: 0 auto 12px; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4)); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0; justify-content: center; }
.hero-highlights { display: flex; gap: 14px; flex-wrap: wrap; color: var(--text-muted); font-size: 14px; justify-content: center; }
.hero-highlights span { display: inline-flex; gap: 6px; align-items: center; padding: 8px 12px; border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.06); }
.card-copy { color: var(--text-muted); }
.badge-soft { display: inline-flex; align-items: center; padding: 6px 12px; border-radius: 999px; background: rgba(226, 53, 53, 0.15); color: var(--accent); font-weight: 700; letter-spacing: 0.02em; margin-bottom: 8px; }

.section-head { text-align: left; margin-bottom: 32px; }
.solutions .row, .benefits .row, .testimonials .row { row-gap: 24px; }
.solution-card { display: block; padding: 20px; border-radius: var(--radius-lg); background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); height: 100%; }
.solution-card .card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.solution-card .icon { font-size: 28px; }
.solution-card .badge { padding: 6px 12px; border-radius: 999px; background: rgba(226, 53, 53, 0.15); color: var(--accent); font-weight: 700; }
.solution-card p { color: var(--text-muted); margin: 0; }
.solution-card:hover { transform: translateY(-4px) scale(1.01); border-color: var(--accent); box-shadow: 0 18px 40px rgba(226, 53, 53, 0.25); }

.benefit-card { background: var(--bg-secondary); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow); transition: transform var(--transition), border-color var(--transition); height: 100%; }
.benefit-card .icon { font-size: 28px; display: inline-block; margin-bottom: 12px; }
.benefit-card p { color: var(--text-muted); }
.benefit-card:hover { transform: translateY(-4px); border-color: var(--accent); }

.process { background: linear-gradient(180deg, rgba(17, 18, 22, 0.8), rgba(13, 14, 16, 0.9)); }
.timeline { display: grid; gap: 16px; }
.step { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 16px 18px; border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.06); box-shadow: var(--shadow); transition: border-color var(--transition), transform var(--transition); }
.step-number { width: 44px; height: 44px; border-radius: 12px; background: rgba(226, 53, 53, 0.15); color: var(--accent); display: grid; place-items: center; font-weight: 800; }
.step-body h3 { margin-bottom: 6px; }
.step-body p { margin: 0; color: var(--text-muted); }
.step-link { color: var(--accent); font-weight: 700; }
.step:hover { transform: translateY(-3px); border-color: var(--accent); }

.testimonial-card { background: var(--card); border-radius: var(--radius-lg); padding: 20px; border: 1px solid var(--border); box-shadow: var(--shadow); height: 100%; transition: transform var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); }
.avatar { width: 48px; height: 48px; border-radius: 50%; background: rgba(226, 53, 53, 0.2); color: var(--accent); display: grid; place-items: center; font-weight: 800; margin-bottom: 10px; }
.stars { color: #ffbf36; font-size: 14px; margin-bottom: 8px; }
.quote { color: var(--text-muted); font-style: italic; }
.name { color: var(--text); font-weight: 700; }

.faq { background: var(--bg-secondary); }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid rgba(255, 255, 255, 0.06); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.02); overflow: hidden; }
.faq-toggle { width: 100%; text-align: left; background: none; color: var(--text); border: none; padding: 14px 16px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-toggle i { transition: transform var(--transition); }
.faq-content { max-height: 0; overflow: hidden; padding: 0 16px; color: var(--text-muted); transition: max-height var(--transition), padding var(--transition); }
.faq-item.active .faq-content { max-height: 200px; padding-bottom: 14px; }
.faq-item.active .faq-toggle i { transform: rotate(45deg); }

.cta { background: linear-gradient(120deg, rgba(226, 53, 53, 0.1), rgba(17, 18, 22, 0.95)); }
.cta-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px; align-items: center; background: rgba(0, 0, 0, 0.35); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.discord-embed iframe { width: 100%; border-radius: var(--radius-md); }

.footer { background: #0b0c0e; padding: 36px 0 28px; color: var(--text-muted); }
.footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; align-items: center; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--accent-hover); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.08); display: grid; place-items: center; color: var(--text); }
.footer-social a:hover { border-color: var(--accent); color: var(--accent-hover); }
.footer-copy { margin: 8px 0 0; color: var(--text-muted); }
.disclaimer { margin: 12px 0 0; color: var(--text-muted); font-size: 13px; }
.footer-bottom { margin-top: 16px; font-size: 13px; display: flex; flex-direction: column; gap: 6px; }

.scroll-top { position: fixed; right: 20px; bottom: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: var(--text); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: var(--transition); box-shadow: 0 12px 30px rgba(226, 53, 53, 0.35); }
.scroll-top.active { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px) scale(1.03); background: var(--accent-hover); }

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1200px) {
  h1 { font-size: 42px; }
  .cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header { padding: 14px 0; }
  .navmenu ul { position: absolute; top: 70px; right: 24px; left: 24px; flex-direction: column; background: rgba(17, 18, 22, 0.98); padding: 16px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--radius-md); display: none; }
  body.mobile-nav-active .navmenu ul { display: flex; }
  .mobile-nav-toggle { display: inline-flex; }
  .navmenu a { width: 100%; padding: 8px 0; }
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  .section { padding: 72px 0; }
  .hero { padding-top: 120px; }
  .hero-actions { width: 100%; }
  .hero-actions a { flex: 1; text-align: center; }
  .timeline { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 30px; }
  .hero-actions { flex-direction: column; }
  .hero-highlights { flex-direction: column; }
}
