/* ============================================================
   Soulermate – Landing Page
   Theme: warm & verspielt – Violett (#7C4DFF) → Pink (#FF5C8A)
   Heller Hintergrund (#FBF7FF), dunkler Text (#241B3A).
   Sekundär: Koralle, Teal, Grün (aus der App).
   ============================================================ */

:root {
  --bg: #FBF7FF;
  --bg-alt: #F3ECFF;
  --card: #ffffff;
  --line: #eadcff;
  --line-2: #d9c4ff;
  --text: #241B3A;
  --muted: #6b6080;
  --muted-2: #9c91b3;
  --violet: #7C4DFF;
  --violet-dark: #6336e6;
  --violet-deep: #4a2bb0;
  --pink: #FF5C8A;
  --coral: #FF8A4C;
  --teal: #3FB6C5;
  --green: #36C275;
  --grad: linear-gradient(135deg, #7C4DFF, #FF5C8A);
  --amber: #f59e0b;
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1140px;
  --shadow: 0 18px 44px rgba(124, 77, 255, 0.20);
  --shadow-sm: 0 6px 18px rgba(124, 77, 255, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.container--narrow { max-width: 760px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.accent, .brand__accent { color: var(--pink); }

/* --- NAV --- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 9px; font-size: 21px; font-weight: 800; letter-spacing: -0.02em; color: var(--violet-deep); }
.brand__icon { border-radius: 9px; box-shadow: var(--shadow-sm); }
.nav__links { display: flex; align-items: center; gap: 22px; font-size: 15px; color: var(--muted); }
.nav__links > a:hover { color: var(--text); }

.lang { display: flex; gap: 4px; background: rgba(124,77,255,0.08); padding: 3px; border-radius: 10px; }
.lang__btn {
  border: 0; background: transparent; cursor: pointer; line-height: 0;
  padding: 5px 7px; border-radius: 7px; filter: grayscale(0.55); opacity: 0.6; transition: all .15s ease;
}
.lang__btn svg { display: block; border-radius: 2px; }
.lang__btn:hover { opacity: 1; }
.lang__btn--active { background: #fff; filter: none; opacity: 1; box-shadow: var(--shadow-sm); }

.btn { display: inline-block; padding: 10px 20px; border-radius: 11px; font-weight: 700; transition: transform .15s ease, box-shadow .2s ease; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 6px 18px rgba(124,77,255,0.34); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255,92,138,0.42); }

/* --- HERO --- */
.hero { position: relative; padding: 78px 0 56px; overflow-x: clip; }
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.pill {
  display: inline-block; font-size: 13px; font-weight: 700; color: var(--violet-dark);
  background: rgba(124,77,255,0.12); border: 1px solid rgba(124,77,255,0.3);
  padding: 6px 13px; border-radius: 999px; margin-bottom: 22px;
}
.pill--accent { background: var(--grad); color: #fff; border: 0; letter-spacing: 0.06em; }
.hero h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.06; letter-spacing: -0.03em; font-weight: 800; color: var(--violet-deep); }
.lead { color: var(--muted); font-size: 19px; margin: 22px 0 24px; max-width: 33em; }

/* Swipe legend */
.swipe-legend { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.sw {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700;
  padding: 8px 14px; border-radius: 999px; border: 1px solid transparent; background: #fff;
  box-shadow: var(--shadow-sm);
}
.swi { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.sw--no  { color: var(--pink);  border-color: rgba(255,92,138,0.4); }
.sw--meh { color: var(--coral); border-color: rgba(255,138,76,0.4); }
.sw--yes { color: var(--green); border-color: rgba(54,194,117,0.4); }

/* Store badges */
.store-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.store-row--center { justify-content: center; margin-top: 30px; }
.store-badge { display: inline-block; position: relative; transition: transform .15s ease, filter .2s ease; }
.store-badge img { height: 52px; width: auto; }
.store-badge:hover { transform: translateY(-2px); filter: brightness(1.06); }
.store-badge--soon { cursor: default; }
.store-badge--soon img { filter: grayscale(0.7) opacity(0.6); }
.store-badge--soon:hover { transform: none; }
.store-badge--soon::after {
  content: attr(data-soon); position: absolute; top: -9px; right: -6px;
  background: var(--coral); color: #3a1500; font-size: 10px; font-weight: 800;
  padding: 2px 7px; border-radius: 999px; box-shadow: var(--shadow-sm); white-space: nowrap;
}
.hero__rating { color: var(--muted); font-size: 13px; margin-top: 14px; }

/* Phone */
.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__glow { position: absolute; inset: -12% 0; z-index: 0; max-width: 100%;
  background: radial-gradient(closest-side, rgba(124,77,255,0.28), rgba(255,92,138,0.12), transparent 72%); filter: blur(22px); }
.phone {
  position: relative; z-index: 1;
  width: 264px; border-radius: 38px; padding: 11px;
  background: linear-gradient(160deg, #4a2bb0, #241B3A);
  border: 1px solid rgba(124,77,255,0.3); box-shadow: var(--shadow);
}
.phone--hero { width: 290px; }
.phone__shot { width: 100%; border-radius: 28px; display: block; background: var(--bg-alt); }

/* --- TRUST STRIP --- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.trust__inner { display: flex; flex-wrap: wrap; gap: 16px 32px; justify-content: center; padding: 18px 22px; }
.trust__item { color: var(--muted); font-size: 14px; font-weight: 600; }
.trust__item::before { content: "♥"; color: var(--pink); margin-right: 8px; }

/* --- SECTIONS --- */
.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__title { font-size: clamp(27px, 3.6vw, 40px); font-weight: 800; text-align: center; letter-spacing: -0.02em; color: var(--violet-deep); }
.section__sub { color: var(--muted); text-align: center; max-width: 38em; margin: 12px auto 0; font-size: 17px; }
.section .grid, .section .steps, .section .showcase, .section .chips, .section .faq, .section .souls { margin-top: 48px; }

/* Features */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); border-color: var(--violet); box-shadow: var(--shadow-sm); }
.feature__icon {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 14px;
  background: rgba(124,77,255,0.12); color: var(--violet);
}
.feature__icon .fi { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature--violet .feature__icon { background: rgba(124,77,255,0.12); color: var(--violet); }
.feature--pink   .feature__icon { background: rgba(255,92,138,0.14); color: var(--pink); }
.feature--coral  .feature__icon { background: rgba(255,138,76,0.16); color: var(--coral); }
.feature--teal   .feature__icon { background: rgba(63,182,197,0.16); color: var(--teal); }
.feature--green  .feature__icon { background: rgba(54,194,117,0.16); color: var(--green); }
.feature h3 { font-size: 18px; margin-bottom: 6px; color: var(--violet-deep); }
.feature p { color: var(--muted); font-size: 14px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; position: relative; box-shadow: var(--shadow-sm); }
.step__num {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad); color: #fff;
  font-weight: 800; font-size: 18px; margin-bottom: 16px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; color: var(--violet-deep); }
.step p { color: var(--muted); font-size: 15px; }

/* Souls timeline */
.souls { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.soul {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.soul::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; }
.soul--day::before   { background: var(--violet); }
.soul--week::before  { background: var(--pink); }
.soul--month::before { background: var(--coral); }
.soul__tag { font-size: 18px; font-weight: 800; color: var(--violet-deep); margin-bottom: 8px; }
.soul p { color: var(--muted); font-size: 15px; }

/* Showcase */
.showcase { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.showcase__item { text-align: center; }
.showcase__item figcaption { color: var(--muted); font-size: 14px; margin-top: 16px; font-weight: 600; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
  background: var(--card); border: 1px solid var(--line-2); border-radius: 999px;
  padding: 10px 18px; font-size: 15px; font-weight: 600; color: var(--violet-deep);
}

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq__item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
}
.faq__item summary {
  cursor: pointer; padding: 18px 22px; font-weight: 700; font-size: 17px; list-style: none;
  display: flex; justify-content: space-between; align-items: center; color: var(--violet-deep);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--pink); font-size: 22px; font-weight: 400; transition: transform .2s ease; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* CTA band */
.cta-band { padding: 80px 0; text-align: center; background:
  radial-gradient(700px 380px at 50% 0%, rgba(124,77,255,0.22), rgba(255,92,138,0.10), transparent 65%), var(--bg-alt);
  border-top: 1px solid var(--line); }
.cta-band__icon { margin: 0 auto 18px; border-radius: 18px; box-shadow: var(--shadow); }
.cta-band h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.02em; color: var(--violet-deep); }
.cta-band p { color: var(--muted); font-size: 18px; margin-top: 10px; }

/* Footer */
.footer { background: var(--violet-deep); color: #e7ddff; padding: 44px 0 26px; }
.footer .brand, .footer .section__title { color: #fff; }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.footer__brand { max-width: 30em; }
.footer__brand .brand { font-size: 18px; color: #fff; }
.footer__brand p { color: #cdbcf2; font-size: 14px; margin-top: 8px; }
.footer__api { font-size: 12.5px !important; color: #b6a3e0 !important; }
.footer__links { display: flex; flex-direction: column; gap: 9px; font-size: 14px; color: #cdbcf2; }
.footer__links a:hover { color: #fff; }
.footer__legal { color: #a892d8; font-size: 12px; margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.14); }

/* --- RESPONSIVE --- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy .lead { margin-left: auto; margin-right: auto; }
  .hero .store-row, .hero .swipe-legend { justify-content: center; }
  .hero__visual { order: -1; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .souls { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav__links > a:not(.btn) { display: none; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .grid { grid-template-columns: 1fr; }
  .store-row { justify-content: center; }
  .store-badge img { height: 48px; }
}
