
/*
Theme Name: PlatinBeats Landing
Theme URI: https://platinbeats.com/
Author: PlatinBeats
Description: Ein modernes One-Page-Landingpage-Theme (ähnlich einer SaaS-/Trading-Landingpage) für WordPress.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: platinbeats-landing
*/

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

:root {
  --bg: #050816;
  --bg-alt: #070b19;
  --bg-soft: #0d1021;
  --primary: #6d5dfc;
  --primary-soft: rgba(109, 93, 252, 0.15);
  --primary-strong: #8a7bff;
  --accent: #4ade80;
  --text: #f9fafb;
  --muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --radius-lg: 1.4rem;
  --radius-xl: 2rem;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.75);
  --shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.5);
  --transition-fast: 180ms ease-out;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 60%, #000 100%);
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
}

/* NAVBAR */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.7),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #6d5dfc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #020617;
  box-shadow: 0 10px 30px rgba(129, 140, 248, 0.65);
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: #e5e7eb;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition:
    transform 150ms ease-out,
    box-shadow 150ms ease-out,
    background 150ms ease-out,
    border-color 150ms ease-out,
    color 150ms ease-out,
    opacity 150ms ease-out;
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: rgba(148, 163, 184, 0.6);
}

.btn-ghost:hover {
  color: #e5e7eb;
  border-color: #e5e7eb;
  transform: translateY(-1px);
  box-shadow: var(--shadow-subtle);
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #8b5cf6, #22c55e);
  color: #f9fafb;
  box-shadow: 0 16px 35px rgba(79, 70, 229, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px) translateZ(0);
  box-shadow: 0 20px 45px rgba(79, 70, 229, 0.9);
  filter: saturate(1.1);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.6rem 0.25rem 0.3rem;
  border-radius: 999px;
  background: radial-gradient(circle at left, rgba(52, 211, 153, 0.2), transparent),
    rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(52, 211, 153, 0.4);
  font-size: 0.75rem;
  color: var(--muted);
}

.badge-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #ffffff, #22c55e);
  box-shadow: 0 0 16px rgba(22, 163, 74, 0.9);
}

/* LAYOUT WRAPPER */
main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

section {
  margin: 4rem 0;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-left {
  position: relative;
}

.hero-kpi-strip {
  display: inline-flex;
  gap: 1.25rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  backdrop-filter: blur(18px);
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  align-items: center;
}

.hero-kpi-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.hero-kpi-pill strong {
  color: #e5e7eb;
}

.hero-title {
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero-title span.highlight {
  background: linear-gradient(120deg, #a855f7, #6366f1, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.6rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-guarantee {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.3rem;
}

.hero-guarantee span.icon {
  font-size: 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-meta strong {
  color: #e5e7eb;
}

/* HERO RIGHT MOCKUP */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.3), #020617) border-box;
  padding: 1.4rem 1.4rem 1.1rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.4);
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.15rem;
}

.hero-card-title {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-card-title strong {
  display: block;
  font-size: 0.98rem;
  color: #e5e7eb;
}

.hero-card-chip {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(6, 95, 70, 0.35);
  border: 1px solid rgba(52, 211, 153, 0.8);
  color: #bbf7d0;
}

.hero-card-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: flex-start;
}

.mini-chart {
  position: relative;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(17, 24, 39, 0.9));
  padding: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  overflow: hidden;
}

.mini-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
}

.mini-chart-header strong {
  font-size: 1.05rem;
}

.mini-chart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

.mini-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.18rem;
  height: 80px;
}

.mini-chart-bar {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(to top, rgba(55, 65, 81, 0.5), rgba(148, 163, 184, 0.7));
  position: relative;
  overflow: hidden;
}

.mini-chart-bar.positive::after,
.mini-chart-bar.negative::after {
  content: "";
  position: absolute;
  inset: 0;
}

.mini-chart-bar.positive::after {
  background: linear-gradient(to top, rgba(22, 163, 74, 0.85), rgba(45, 212, 191, 0.7));
}

.mini-chart-bar.negative::after {
  background: linear-gradient(to top, rgba(248, 113, 113, 0.9), rgba(251, 113, 133, 0.7));
}

.summary-card {
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.8rem 0.8rem 0.9rem;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.summary-label {
  color: var(--muted);
  font-size: 0.75rem;
}

.summary-value {
  font-weight: 600;
}

.summary-pill {
  font-size: 0.7rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.9);
  border: 1px dashed rgba(148, 163, 184, 0.5);
  color: var(--muted);
}

.hero-card-floating {
  position: absolute;
  right: -10px;
  bottom: -16px;
  width: 170px;
  border-radius: 1.2rem;
  padding: 0.7rem 0.9rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(129, 140, 248, 0.5);
  box-shadow: 0 18px 40px rgba(30, 64, 175, 0.8);
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero-card-floating strong {
  font-size: 0.8rem;
}

.hero-card-floating span.positive {
  color: #4ade80;
}

.hero-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.55), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(45, 212, 191, 0.4), transparent 50%);
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}

/* FEATURES */
.section-label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 30rem;
  margin-bottom: 1.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.feature-card {
  border-radius: 1.1rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.feature-title {
  font-weight: 600;
  font-size: 0.98rem;
}

.feature-text {
  font-size: 0.85rem;
  color: var(--muted);
}

.feature-tag {
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: #9ca3af;
  opacity: 0.95;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at top right, rgba(129, 140, 248, 0.25), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.feature-card:hover::after {
  opacity: 1;
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: flex-start;
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  border-radius: 1.1rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-subtle);
  padding: 0.9rem 1rem;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.8);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.82rem;
}

.testimonial-role {
  font-size: 0.72rem;
  color: var(--muted);
}

.testimonial-rating {
  font-size: 0.75rem;
  color: #fde68a;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.9);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1rem;
  cursor: pointer;
  font-size: 0.88rem;
}

.faq-question span {
  font-weight: 500;
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--muted);
}

.faq-answer {
  padding: 0 1rem 0.9rem;
  font-size: 0.83rem;
  color: var(--muted);
  border-top: 1px solid rgba(51, 65, 85, 0.9);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.pricing-card {
  border-radius: 1.3rem;
  padding: 1.2rem 1rem 1.2rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow: 0 24px 55px rgba(79, 70, 229, 0.9);
  background: radial-gradient(circle at top, rgba(30, 64, 175, 0.6), #020617);
}

.pricing-badge {
  align-self: flex-start;
  font-size: 0.7rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid rgba(129, 140, 248, 0.7);
  color: #c7d2fe;
}

.pricing-name {
  font-weight: 600;
  font-size: 0.98rem;
}

.pricing-price {
  font-size: 1.3rem;
  font-weight: 700;
}

.pricing-price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 0.25rem;
}

.pricing-note {
  font-size: 0.75rem;
  color: var(--muted);
}

.pricing-features {
  margin-top: 0.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.78rem;
  color: var(--muted);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pricing-features li::before {
  content: "•";
  color: #22c55e;
  margin-right: 0.35rem;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(30, 64, 175, 0.6);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 1), #020617);
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: #e5e7eb;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero,
  .testimonials,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
  }

  .hero-card-floating {
    right: 8px;
    bottom: -12px;
  }

  .features-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .hero {
    margin-top: 1rem;
  }

  .features-grid,
  .pricing-grid,
  .testimonial-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-kpi-strip {
    display: none;
  }
}

@media (max-width: 480px) {
  main {
    padding-inline: 1rem;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .nav {
    padding-inline: 1rem;
  }
}
