
:root {
  --bg: #100b1c;
  --bg-soft: #171127;
  --bg-raised: #211831;
  --glass: rgba(36, 26, 53, 0.68);
  --glass-strong: rgba(43, 30, 62, 0.9);
  --text: #f8f6fb;
  --muted: #beb6cb;
  --faint: #8f849c;
  --line: rgba(255, 255, 255, 0.14);
  --line-bright: rgba(255, 255, 255, 0.24);
  --pink: #ff5da2;
  --pink-soft: #ffd2e8;
  --lilac: #b892ff;
  --mint: #86e6c3;
  --shadow: 0 32px 90px rgba(2, 0, 10, 0.48);
}

* { box-sizing: border-box; }

.language-toggle {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .10);
  font: 800 .76rem/1 Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .08em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.language-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .17);
}
.language-toggle:focus-visible {
  outline: 3px solid rgba(245, 37, 119, .35);
  outline-offset: 3px;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 8%, rgba(142, 62, 153, .18), transparent 32rem),
    radial-gradient(circle at 5% 40%, rgba(88, 42, 119, .14), transparent 35rem),
    var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.section { position: relative; padding: 118px 0; }
h1, h2, h3 { font-family: Sora, "Plus Jakarta Sans", Inter, sans-serif; }
h1, h2 { letter-spacing: -.055em; line-height: 1.02; }
h2 { margin: 18px 0; font-size: clamp(2.45rem, 4.6vw, 4.2rem); font-weight: 690; }
.copy, .heading > p:last-child { color: var(--muted); font-size: 1rem; line-height: 1.78; }
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--pink-soft);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  box-shadow: 0 0 0 5px rgba(255, 93, 162, .12), 0 0 20px rgba(255, 93, 162, .55);
}
.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 16px;
  padding: 0 26px;
  color: #fff;
  background: linear-gradient(115deg, var(--pink), #d55ac1 58%, #a960e8);
  box-shadow: 0 14px 36px rgba(255, 93, 162, .25), inset 0 1px 0 rgba(255, 255, 255, .34);
  font-size: .92rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 18px 46px rgba(255, 93, 162, .35), inset 0 1px 0 rgba(255, 255, 255, .4);
}
.btn.small { min-height: 44px; border-radius: 14px; padding: 0 20px; font-size: .82rem; }
.btn.dark, .btn.outline {
  border-color: var(--line-bright);
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09);
}
.btn.light { color: #2b1234; background: #fff; box-shadow: 0 15px 34px rgba(0, 0, 0, .18); }

header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  padding-top: 18px;
}
.nav {
  min-height: 82px;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--line-bright);
  border-radius: 22px;
  padding: 11px 14px 11px 17px;
  background: rgba(22, 15, 36, .64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 18px 60px rgba(0, 0, 0, .2);
  backdrop-filter: blur(24px);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand span { display: grid; gap: 1px; }
.brand b { font-family: Sora, sans-serif; font-size: 1rem; }
.brand small { color: var(--muted); font-size: .62rem; }
.nav nav { justify-self: center; display: flex; gap: 34px; }
.nav nav a, .login { color: #ddd7e5; font-size: .86rem; font-weight: 570; text-decoration: none; transition: color .2s ease; }
.nav nav a:hover, .login:hover { color: #fff; }
.navCta { display: flex; align-items: center; gap: 18px; }

.hero {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 92px;
  background:
    radial-gradient(ellipse at 86% 38%, rgba(152, 62, 170, .35), transparent 31%),
    radial-gradient(ellipse at 73% 48%, rgba(255, 93, 162, .16), transparent 27%),
    linear-gradient(150deg, #0c0817 0%, #120b20 50%, #180c25 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 7% -18% auto;
  width: 750px;
  height: 600px;
  border-radius: 50%;
  opacity: .24;
  filter: blur(50px);
  background: radial-gradient(circle at 30% 30%, #ff5da2, transparent 44%), radial-gradient(circle at 70% 65%, #8d5edb, transparent 48%);
}
.wash {
  position: absolute;
  pointer-events: none;
  border-radius: 44% 56% 62% 38% / 50% 42% 58% 50%;
  filter: blur(22px);
  mix-blend-mode: screen;
}
.washOne {
  width: 520px;
  height: 420px;
  right: -120px;
  top: 18px;
  opacity: .26;
  background: radial-gradient(circle at 35% 45%, #ff5da2, transparent 50%), radial-gradient(circle at 68% 66%, #b892ff, transparent 50%);
  animation: glow-drift 14s ease-in-out infinite alternate;
}
.washTwo {
  width: 450px;
  height: 420px;
  left: -260px;
  bottom: -190px;
  opacity: .16;
  background: radial-gradient(circle, #9264dd, transparent 66%);
}
.heroGrid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(610px, 1.16fr);
  gap: 70px;
  align-items: center;
}
.hero h1 {
  max-width: 620px;
  margin: 24px 0 27px;
  font-size: clamp(4.15rem, 6.4vw, 6.1rem);
  font-weight: 720;
}
.hero h1 em, .heading h2 em {
  background: linear-gradient(110deg, #fff 0%, var(--pink-soft) 46%, var(--lilac) 100%);
  background-clip: text;
  color: transparent;
  font-style: normal;
}
.lead { max-width: 610px; margin: 0; color: var(--muted); font-size: 1.11rem; line-height: 1.75; }
.heroCta { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.underlink { color: #e9e3ef; font-size: .86rem; font-weight: 680; text-decoration: none; }
.checks { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.checks span {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 9px 12px;
  color: #d6cedd;
  background: rgba(255, 255, 255, .035);
  font-size: .75rem;
  backdrop-filter: blur(10px);
}

.heroVisual { position: relative; min-height: 575px; display: flex; align-items: center; }
.orbit { position: absolute; right: -38px; width: 570px; height: 570px; border: 1px dashed rgba(255, 166, 212, .18); border-radius: 50%; }
.app {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 26px;
  background: rgba(31, 22, 47, .82);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .08);
  transform: perspective(1300px) rotateY(-4deg) rotateX(1.5deg);
  backdrop-filter: blur(28px);
  animation: app-float 5s ease-in-out infinite;
}
.appTop {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding: 0 17px;
  background: rgba(255, 255, 255, .025);
}
.appTop > span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .25); }
.appTop > span:first-child { background: var(--pink); box-shadow: 0 0 16px rgba(255, 93, 162, .6); }
.appTop b { margin-left: 10px; font-size: .72rem; }
.appTop em, .activityHead em {
  margin-left: auto;
  border: 1px solid rgba(134, 230, 195, .25);
  border-radius: 99px;
  padding: 5px 9px;
  color: var(--mint);
  background: rgba(134, 230, 195, .08);
  font-size: .58rem;
  font-style: normal;
  font-weight: 800;
}
.appBody { display: grid; grid-template-columns: 78px 1fr; min-height: 410px; }
.app aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-right: 1px solid var(--line);
  padding: 20px 0;
  background: rgba(11, 7, 20, .28);
}
.app aside b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 93, 162, .8), rgba(184, 146, 255, .8));
  font-size: .72rem;
}
.app aside i { width: 22px; height: 7px; border-radius: 8px; background: rgba(255, 255, 255, .16); }
.app aside i.on { width: 34px; background: linear-gradient(90deg, var(--pink), var(--lilac)); box-shadow: 0 0 18px rgba(255, 93, 162, .4); }
.dash { padding: 27px; background: linear-gradient(135deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .01)); }
.dashHead { display: flex; justify-content: space-between; align-items: center; }
.dashHead > span { display: grid; gap: 4px; }
.dashHead small, .stats small, .activity small, .float small { color: #a99fb3; font-size: .63rem; }
.dashHead > span b { font-size: .98rem; }
.dashHead > i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  font-size: .72rem;
  font-style: normal;
}
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 19px; }
.stats article, .activity {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}
.stats article { min-height: 98px; display: grid; gap: 6px; padding: 14px; }
.stats b { font-size: .76rem; }
.stats em { color: var(--mint); font-size: .6rem; font-style: normal; font-weight: 800; }
.bar { height: 5px; overflow: hidden; border-radius: 9px; background: rgba(255, 255, 255, .09); }
.bar i { display: block; width: 72%; height: 100%; background: linear-gradient(90deg, var(--pink), var(--lilac)); box-shadow: 0 0 12px var(--pink); }
.activity { margin-top: 13px; padding: 16px; }
.activityHead { display: flex; justify-content: space-between; }
.activityHead > span { display: grid; gap: 4px; }
.activityHead b { font-size: .73rem; }
.activityHead em { height: max-content; }
.flow { display: grid; grid-template-columns: 1fr auto .86fr; gap: 10px; align-items: center; margin-top: 16px; }
.comment { display: flex; align-items: center; gap: 9px; border: 1px solid rgba(255, 255, 255, .06); border-radius: 11px; padding: 10px; background: rgba(8, 5, 16, .24); }
.comment > i {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #b66c9d;
  font-size: .62rem;
  font-style: normal;
}
.comment span { display: grid; gap: 3px; }
.comment b { font-size: .61rem; }
.flow > strong { color: var(--pink); text-shadow: 0 0 14px var(--pink); }
.results { display: grid; gap: 7px; }
.results span {
  border: 1px solid rgba(134, 230, 195, .16);
  border-radius: 8px;
  padding: 7px 8px;
  color: var(--mint);
  background: rgba(134, 230, 195, .06);
  font-size: .55rem;
  font-weight: 760;
}
.float {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-bright);
  border-radius: 16px;
  padding: 12px 15px;
  background: rgba(35, 25, 52, .88);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px);
}
.float span { display: grid; gap: 3px; }
.float b { font-size: .66rem; }
.float i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  box-shadow: 0 0 20px rgba(255, 93, 162, .35);
  font-size: .72rem;
  font-style: normal;
}
.float.dm { top: 6px; right: -30px; }
.float.answer { right: 12px; bottom: 10px; }
.float.answer i { color: #123a2b; background: var(--mint); box-shadow: 0 0 20px rgba(134, 230, 195, .28); }

.facts { position: relative; z-index: 3; border-block: 1px solid var(--line); background: rgba(255, 255, 255, .025); backdrop-filter: blur(12px); }
.factGrid { display: grid; grid-template-columns: repeat(4, 1fr); }
.factGrid > div {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border-right: 1px solid var(--line);
  padding: 20px 36px;
}
.factGrid > div:first-child { border-left: 1px solid var(--line); }
.factGrid b { color: #fff; font-family: Sora, sans-serif; font-size: 1.6rem; }
.factGrid span { color: var(--muted); font-size: .76rem; }

.heading { max-width: 830px; margin: 0 auto 52px; text-align: center; }
.heading .kicker { justify-content: center; }
.heading > p:last-child { max-width: 730px; margin-inline: auto; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.cards article {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 25px;
  background: linear-gradient(150deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 20px 55px rgba(0, 0, 0, .16);
  transition: transform .25s ease, border-color .25s ease;
}
.cards article::after {
  content: "";
  width: 180px;
  height: 180px;
  margin: auto -80px -100px auto;
  border-radius: 50%;
  opacity: .18;
  filter: blur(8px);
  background: var(--pink);
}
.cards article.lilac::after, .cards article.violet::after { background: var(--lilac); }
.cards article.blue::after { background: #6a9ee8; }
.cards article:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, .28); }
.cards article > span { display: flex; justify-content: space-between; color: #9d92a8; font-size: .72rem; font-weight: 850; }
.cards article > span i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  color: var(--pink-soft);
  background: rgba(255, 255, 255, .04);
  font-style: normal;
}
.cards h3 { margin: auto 0 12px; font-size: 1.22rem; }
.cards p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.72; }

.how { overflow: hidden; background: linear-gradient(160deg, #171026, #120c20); }
.how::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: -250px;
  bottom: -270px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 146, 255, .2), transparent 68%);
}
.howGrid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 90px; align-items: center; }
.howGrid ol { display: grid; gap: 4px; margin: 31px 0; padding: 0; list-style: none; }
.howGrid li { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 13px 0; }
.howGrid li > b {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  color: var(--pink-soft);
  background: rgba(255, 255, 255, .055);
  font-size: .78rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
}
.howGrid li span { display: grid; gap: 5px; }
.howGrid li strong { font-size: .92rem; }
.howGrid li small { color: var(--muted); font-size: .8rem; }
.builder {
  position: relative;
  border: 1px solid var(--line-bright);
  border-radius: 28px;
  padding: 31px;
  background: rgba(39, 28, 57, .72);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(24px);
}
.builder::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -75px -90px auto auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 93, 162, .22), transparent 67%);
}
.builderHead { display: flex; justify-content: space-between; align-items: center; }
.builderHead > b { font-size: .9rem; }
.builderHead > i {
  width: 45px;
  height: 25px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-radius: 99px;
  padding: 3px;
  background: linear-gradient(90deg, var(--pink), var(--lilac));
  box-shadow: 0 0 18px rgba(255, 93, 162, .28);
}
.builderHead > i span { width: 19px; height: 19px; border-radius: 50%; background: #fff; }
.builder label {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 17px;
  background: rgba(8, 5, 16, .23);
}
.builder label small, .outputs small { color: #a99fb3; font-size: .68rem; }
.builder label strong { font-size: 1.18rem; }
.builder label em { color: #8d8397; font-size: .64rem; font-style: normal; }
.path { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto; align-items: center; margin: 29px 3px 20px; }
.path span { height: 2px; background: repeating-linear-gradient(90deg, var(--pink) 0 8px, transparent 8px 14px); filter: drop-shadow(0 0 5px var(--pink)); }
.path b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  box-shadow: 0 0 18px rgba(255, 93, 162, .3);
  font-size: .66rem;
}
.outputs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.outputs article {
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, .035);
}
.outputs article > i {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 93, 162, .32), rgba(184, 146, 255, .28));
  font-size: .9rem;
  font-style: normal;
}
.outputs article > span { display: grid; gap: 4px; }
.outputs b { font-size: .7rem; }
.builder footer {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  background: none;
  color: inherit;
}
.builder footer span { color: #aa83b3; letter-spacing: 3px; }
.builder footer b { color: var(--mint); font-size: .63rem; }

.replies { background: radial-gradient(circle at 20% 50%, rgba(113, 52, 116, .17), transparent 32rem), var(--bg); }
.repliesGrid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 90px; align-items: center; }
.reelVisual { position: relative; min-height: 590px; }
.reel {
  width: 335px;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: 28px;
  background: rgba(35, 25, 52, .8);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .08);
}
.reel > div {
  position: relative;
  height: 410px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 93, 162, .68), transparent 40%),
    radial-gradient(circle at 78% 80%, rgba(184, 146, 255, .72), transparent 42%),
    #181024;
}
.reel > div > span {
  position: absolute;
  top: 18px;
  left: 18px;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 7px 11px;
  color: var(--pink-soft);
  background: rgba(16, 11, 28, .54);
  font-size: .6rem;
  font-weight: 850;
}
.reel img { width: 190px; filter: drop-shadow(0 20px 45px rgba(0, 0, 0, .35)); }
.reel > p { display: grid; gap: 5px; margin: 0; padding: 18px; }
.reel > p b { font-size: .8rem; }
.reel > p small { color: var(--muted); }
.commentCards { position: absolute; top: 94px; right: 0; width: 380px; display: grid; gap: 12px; }
.commentCards article {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line-bright);
  border-radius: 17px;
  padding: 15px;
  background: rgba(37, 26, 55, .9);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .31), inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(18px);
}
.commentCards article > i {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #b66c9d;
  font-size: .72rem;
  font-style: normal;
  font-weight: 850;
}
.commentCards article > span { display: grid; gap: 4px; }
.commentCards small { color: #a99fb3; font-size: .64rem; }
.commentCards b { font-size: .76rem; }
.commentCards .auto { margin-left: 48px; background: linear-gradient(135deg, rgba(255, 93, 162, .12), rgba(184, 146, 255, .08)), rgba(37, 26, 55, .94); }
.commentCards .auto i { background: linear-gradient(135deg, var(--pink), var(--lilac)); box-shadow: 0 0 18px rgba(255, 93, 162, .3); }
.commentCards .alt { margin-left: 78px; }
.ticks { display: grid; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
.ticks li { position: relative; padding-left: 31px; color: #d6cedd; font-size: .87rem; }
.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(134, 230, 195, .22);
  border-radius: 50%;
  color: var(--mint);
  background: rgba(134, 230, 195, .07);
  font-size: .66rem;
  font-weight: 900;
}

.pricing {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 93, 162, .13), transparent 28rem),
    radial-gradient(circle at 88% 78%, rgba(184, 146, 255, .15), transparent 28rem),
    #151022;
}
.prices { max-width: 900px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: auto; }
.prices > article {
  position: relative;
  border: 1px solid var(--line-bright);
  border-radius: 28px;
  padding: 35px;
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .07);
  backdrop-filter: blur(20px);
}
.plan { margin: 0 0 15px !important; color: var(--pink-soft) !important; font-size: .68rem !important; font-weight: 900; letter-spacing: .16em; }
.prices h3 { margin: 0; font-size: 1.32rem; }
.price { display: flex; align-items: flex-end; gap: 8px; margin: 24px 0 13px; }
.price b { font-family: Sora, sans-serif; font-size: 2.9rem; letter-spacing: -.06em; line-height: 1; }
.price span { padding-bottom: 5px; color: var(--muted); font-size: .8rem; }
.prices > article > p { min-height: 47px; color: var(--muted); font-size: .83rem; line-height: 1.62; }
.prices ul { display: grid; gap: 13px; margin: 26px 0 31px; padding: 23px 0 0; border-top: 1px solid var(--line); list-style: none; }
.prices li { position: relative; padding-left: 26px; color: #e1dbe7; font-size: .82rem; }
.prices li::before { content: "✓"; position: absolute; left: 0; color: var(--mint); font-weight: 900; }
.prices .btn { width: 100%; }
.prices article > small { display: block; margin-top: 14px; color: #9f94aa; text-align: center; font-size: .65rem; }
.prices .pro {
  background:
    radial-gradient(circle at 90% 0, rgba(255, 93, 162, .28), transparent 36%),
    linear-gradient(150deg, rgba(79, 36, 88, .96), rgba(41, 23, 59, .96));
  box-shadow: 0 34px 90px rgba(0, 0, 0, .36), 0 0 65px rgba(255, 93, 162, .09), inset 0 1px 0 rgba(255, 255, 255, .12);
}
.prices .pro > em {
  position: absolute;
  right: 23px;
  top: 23px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 99px;
  padding: 7px 11px;
  color: #fff;
  background: linear-gradient(110deg, rgba(255, 93, 162, .8), rgba(184, 146, 255, .65));
  font-size: .6rem;
  font-style: normal;
  font-weight: 850;
}

.faq { background: var(--bg); }
.faqGrid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 94px; align-items: start; }
.faqList { border-top: 1px solid var(--line); }
.faqList details { border-bottom: 1px solid var(--line); }
.faqList summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 3px;
  cursor: pointer;
  color: #f0ecf3;
  font-size: .95rem;
  font-weight: 730;
  list-style: none;
}
.faqList summary::-webkit-details-marker { display: none; }
.faqList summary span { color: var(--pink); font-size: 1.25rem; transition: transform .2s ease; }
.faqList details[open] summary span { transform: rotate(45deg); }
.faqList details p { max-width: 720px; margin: -5px 0 24px; color: var(--muted); font-size: .85rem; line-height: 1.72; }

.cta {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 74px 0;
  background:
    radial-gradient(circle at 82% 26%, rgba(255, 93, 162, .2), transparent 27rem),
    radial-gradient(circle at 18% 70%, rgba(184, 146, 255, .14), transparent 25rem),
    #171026;
}
.ctaInner { display: grid; grid-template-columns: 128px 1fr auto; gap: 34px; align-items: center; }
.ctaInner > img { width: 128px; object-fit: contain; filter: drop-shadow(0 16px 32px rgba(0, 0, 0, .3)); }
.cta h2 { margin: 7px 0 6px; font-size: clamp(2rem, 4vw, 3.2rem); }
.ctaInner > div > p:last-child { margin: 0; color: var(--muted); font-size: .88rem; }
.siteFooter { padding: 64px 0 24px; background: #090611; color: #fff; }
.foot { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 44px; }
.siteFooter .brand img { width: 68px; height: 68px; }
.siteFooter .brand small { color: #9d93a7; }
.foot > div { display: flex; flex-wrap: wrap; gap: 26px; }
.foot > div a { color: #b9afc3; font-size: .8rem; text-decoration: none; }
.foot > div a:hover { color: #fff; }
.legal { display: flex; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 22px; color: #786e83; font-size: .68rem; }

@keyframes app-float {
  0%, 100% { transform: perspective(1300px) rotateY(-4deg) rotateX(1.5deg) translateY(0); }
  50% { transform: perspective(1300px) rotateY(-4deg) rotateX(1.5deg) translateY(-5px); }
}
@keyframes glow-drift {
  from { transform: translate3d(-12px, -5px, 0) scale(.98); }
  to { transform: translate3d(18px, 15px, 0) scale(1.06); }
}

@media (max-width: 1100px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav nav { display: none; }
  .heroGrid, .howGrid, .repliesGrid { grid-template-columns: 1fr; }
  .hero { padding-top: 150px; }
  .heroCopy { max-width: 760px; }
  .heroVisual { width: min(760px, 100%); margin: 0 auto; }
  .cards { grid-template-columns: 1fr 1fr; }
  .howGrid, .repliesGrid { gap: 62px; }
  .reelVisual { width: min(700px, 100%); }
  .faqGrid { gap: 55px; }
}
@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, 1240px); }
  .section { padding: 82px 0; }
  header { padding-top: 10px; }
  .nav { min-height: 68px; border-radius: 17px; padding: 7px 8px 7px 11px; }
  .brand img { width: 48px; height: 48px; }
  .brand small, .login { display: none; }
  .btn.small { min-height: 42px; padding: 0 14px; }
  .hero { min-height: auto; padding: 118px 0 80px; }
  .heroGrid { grid-template-columns: minmax(0, 1fr); gap: 56px; }
  .hero h1 { font-size: clamp(3.15rem, 15vw, 4.65rem); }
  .lead { font-size: 1rem; }
  .heroCta { align-items: stretch; flex-direction: column; }
  .heroCta .underlink { text-align: center; }
  .checks { display: grid; }
  .heroVisual { min-height: 465px; }
  .app { transform: none; animation: none; }
  .appBody { grid-template-columns: 48px 1fr; min-height: 345px; }
  .app aside { gap: 16px; }
  .app aside i { width: 16px; }
  .app aside i.on { width: 24px; }
  .dash { padding: 15px 12px; }
  .stats { gap: 7px; }
  .stats article { min-height: 82px; padding: 10px; }
  .flow { grid-template-columns: 1fr; }
  .flow > strong { display: none; }
  .results { grid-template-columns: 1fr 1fr; }
  .float { display: none; }
  .factGrid { grid-template-columns: 1fr 1fr; }
  .factGrid > div, .factGrid > div:first-child { min-height: 105px; border-left: 0; border-bottom: 1px solid var(--line); padding: 18px; }
  .factGrid > div:nth-child(2n) { border-right: 0; }
  .cards, .prices, .faqGrid { grid-template-columns: 1fr; }
  .cards article { min-height: 260px; }
  .builder { padding: 23px 16px; }
  .outputs { grid-template-columns: 1fr; }
  .builder footer { align-items: flex-start; flex-direction: column; gap: 9px; }
  .reelVisual { min-height: 620px; }
  .reel { width: 82%; }
  .commentCards { top: 315px; width: 94%; }
  .commentCards .auto { margin-left: 24px; }
  .commentCards .alt { margin-left: 44px; }
  .prices > article { padding: 29px 23px; }
  .ctaInner { grid-template-columns: 78px 1fr; gap: 20px; }
  .ctaInner > img { width: 78px; }
  .ctaInner > .btn { grid-column: 1 / -1; }
  .foot, .legal { flex-direction: column; gap: 20px; }
  .foot > div { gap: 17px; }
  .legal { gap: 7px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Variante 3 · Bento Flow Energy */
:root {
  --bg: #f7f7fa; --bg-soft: #fff; --bg-raised: #fff;
  --glass: rgba(255,255,255,.86); --glass-strong: rgba(255,255,255,.96);
  --text: #111114; --muted: #68636f; --faint: #8b8692;
  --line: #e6e6ed; --line-bright: #dcdce6;
  --pink: #f43f86; --pink-soft: #e83078; --lilac: #7c3aed; --mint: #24ad76;
  --shadow: 0 28px 80px rgba(50,35,70,.13);
}
body {
  background: radial-gradient(circle at 42% 15%,rgba(244,63,134,.08),transparent 28rem),
    radial-gradient(circle at 92% 52%,rgba(124,58,237,.07),transparent 34rem),var(--bg);
  color: var(--text);
  font-family: Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
}
body::before { opacity: .012; }
h1,h2,h3 { font-family: "Space Grotesk",Inter,ui-sans-serif,system-ui,sans-serif; }
.kicker { color: #ca2f70; }
.btn { border-color: rgba(255,255,255,.5); border-radius: 13px; background: linear-gradient(110deg,#f52577,#d52eaa 54%,#7235f2); box-shadow: 0 14px 34px rgba(194,49,145,.22); }
.btn.dark { border-color: transparent; background: #151218; color: #fff; box-shadow: 0 14px 34px rgba(17,17,20,.15); }
.btn.outline { border-color: #d9d7e2; color: #6326c8; background: #fff; box-shadow: none; }
.btn.light { color: #501f75; background: #fff; }
header { position: absolute; padding-top: 18px; }
.nav { min-height: 74px; grid-template-columns: 220px 1fr auto; border-color: rgba(222,220,230,.9); border-radius: 38px; background: rgba(255,255,255,.86); box-shadow: 0 14px 42px rgba(65,45,78,.08); }
.brand img { width: 56px; height: 56px; }
.brand b { color: #111114; }
.brand small,.nav nav a,.login { color: #5e5964; }
.nav nav a:hover,.login:hover { color: #111114; }
.hero { min-height: 880px; padding: 148px 0 80px; background: radial-gradient(circle at 38% 50%,rgba(244,63,134,.13),transparent 23%),radial-gradient(circle at 88% 80%,rgba(124,58,237,.1),transparent 27%),linear-gradient(180deg,#fff 0%,#faf9fc 100%); }
.hero::after { opacity: .08; filter: blur(75px); }
.washOne { opacity: .11; mix-blend-mode: multiply; }
.washTwo { opacity: .08; mix-blend-mode: multiply; }
.heroGrid { grid-template-columns: minmax(0,.8fr) minmax(620px,1.2fr); gap: 46px; }
.hero h1 { color: #0c0c0f; font-size: clamp(4rem,6.2vw,5.8rem); font-weight: 760; }
.hero h1 em,.heading h2 em { background: linear-gradient(110deg,#ef377f,#853bf0); background-clip: text; color: transparent; }
.lead { color: #5f5b64; }
.underlink { color: #5b26b3; }
.checks span { border-color: #e5e2eb; color: #504b55; background: rgba(255,255,255,.82); }
.orbit { border-color: rgba(220,45,131,.23); }
.app { border-color: #dddce5; background: rgba(255,255,255,.95); box-shadow: 0 40px 100px rgba(52,35,75,.16); transform: none; }
.appTop { border-color: #e8e7ed; background: #fbfafc; }
.appTop > span { background: #d8d5dd; }
.appTop b,.dashHead > span b,.stats b,.activityHead b,.comment b,.float b { color: #171419; }
.appTop em,.activityHead em { border-color: #c6eddc; color: #17885b; background: #e9f8f1; }
.appBody { grid-template-columns: 74px 1fr; }
.app aside { border-color: #e9e7ed; background: #fbfafc; }
.app aside b { border-color: #e2dce9; color: #8f2c75; background: #fff; }
.app aside i { background: #d8d4dc; }
.app aside i.on { background: linear-gradient(90deg,#f43f86,#7c3aed); }
.dash { background: #fff; }
.dashHead small,.stats small,.activity small,.float small { color: #817b88; }
.dashHead > i { border: 0; }
.stats article,.activity { border-color: #e7e5eb; background: #fff; box-shadow: 0 9px 24px rgba(45,31,58,.05); }
.stats em { color: #17885b; }
.bar { background: #eeeaf1; }
.comment { border-color: #ede9ef; background: #faf8fb; }
.results span { color: #16734f; background: #eaf8f1; }
.float { border-color: #e2dfe7; background: rgba(255,255,255,.97); box-shadow: 0 18px 48px rgba(48,34,62,.13); }
.facts { border: 0; padding: 0 0 34px; background: #faf9fc; }
.factGrid { gap: 14px; }
.factGrid > div,.factGrid > div:first-child { min-height: 110px; flex-direction: row; align-items: center; justify-content: flex-start; gap: 15px; border: 1px solid #e4e2e9; border-radius: 22px; padding: 20px; background: rgba(255,255,255,.92); box-shadow: 0 14px 38px rgba(48,34,62,.07); }
.factGrid > div:nth-child(1) { background: linear-gradient(145deg,#fff,#ffeaf3); }
.factGrid > div:nth-child(2) { background: linear-gradient(145deg,#fff,#eee8ff); }
.factGrid > div:nth-child(3) { background: linear-gradient(145deg,#fff,#fff0f6); }
.factGrid > div:nth-child(4) { background: linear-gradient(145deg,#fff,#eafaf4); }
.factIcon { flex: 0 0 48px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(228,54,133,.18); border-radius: 15px; color: #e32f78; background: #fff; box-shadow: 0 9px 22px rgba(148,42,112,.1); font-size: 1.38rem; font-style: normal; font-weight: 800; }
.factGrid > div:nth-child(2) .factIcon { color: #7c3aed; }
.factGrid > div:nth-child(4) .factIcon { color: #159665; }
.factGrid > div > span { display: grid; gap: 4px; }
.factGrid b { color: #111114; font-size: 1.42rem; }
.factGrid small { color: #746f79; font-size: .72rem; line-height: 1.35; }
.section { background: #f7f7fa; }
.heading h2,.how h2,.replies h2,.faq h2 { color: #151218; }
.cards article { border-color: #e2e0e7; color: #171419; background: #fff; box-shadow: 0 18px 46px rgba(47,32,59,.06); }
.cards article.pink { background: linear-gradient(155deg,#fff 52%,#ffe7f1); }
.cards article.lilac { background: linear-gradient(155deg,#fff 52%,#eee7ff); }
.cards article.blue { background: linear-gradient(155deg,#fff 52%,#eaf7ff); }
.cards article.violet { background: linear-gradient(155deg,#fff 52%,#f8ebff); }
.cards article > span { color: #7d7582; }
.cards article > span i { border-color: #e4e0e8; color: #c52e70; background: #fff; }
.cards p { color: #6e6872; }
.how { background: #f3f1f6; }
.howGrid li > b { border-color: #ddd8e3; color: #712cc5; background: #fff; }
.howGrid li small { color: #746e79; }
.builder { border-color: #ddd9e3; color: #171419; background: #fff; box-shadow: 0 24px 70px rgba(48,31,61,.1); }
.builderHead > i { background: linear-gradient(90deg,#f43f86,#7c3aed); }
.builder label,.outputs article { border-color: #e4e1e8; background: #fbfafc; }
.builder label small,.outputs small,.builder label em { color: #77717c; }
.path span { background: repeating-linear-gradient(90deg,#e43a81 0 7px,transparent 7px 13px); }
.path b { background: linear-gradient(135deg,#f43f86,#7c3aed); }
.builder footer { border-color: #e5e2e8; }
.replies { background: #fff; }
.reel,.commentCards article { border-color: #e2dfe6; background: #fff; box-shadow: 0 20px 55px rgba(49,31,62,.1); }
.reel > div > span { color: #a72a66; }
.commentCards small,.reel > p small { color: #77717c; }
.commentCards .auto { background: #fdf7fc; }
.commentCards .auto i { background: linear-gradient(135deg,#f43f86,#7c3aed); }
.ticks li { color: #56505a; }
.pricing { background: radial-gradient(circle at 14% 18%,rgba(244,63,134,.09),transparent 25%),radial-gradient(circle at 88% 82%,rgba(124,58,237,.08),transparent 26%),#f5f3f7; }
.prices > article { border-color: #ddd9e2; color: #171419; background: #fff; box-shadow: 0 24px 65px rgba(49,31,62,.08); }
.prices > article:not(.pro) li {
  color: #39343e;
  font-size: .88rem;
  font-weight: 560;
  line-height: 1.55;
}
.prices > article:not(.pro) li::before {
  color: #159665;
  font-size: .92rem;
}
.prices .pro { color: #fff; background: radial-gradient(circle at 90% 0,rgba(244,63,134,.3),transparent 34%),linear-gradient(145deg,#25172e,#51215a); }
.faq { background: #fff; }
.faqList,.faqList details { border-color: #e4e1e8; }
.faqList summary { color: #181519; }
.faqList summary span { color: #cf2f72; }
.cta { border-color: #e1dde5; background: radial-gradient(circle at 80% 15%,rgba(244,63,134,.12),transparent 29%),#faf8fb; }
.cta h2 { color: #151218; }
.siteFooter { background: #17121a; }
.siteFooter .brand b { color: #fff; }
.siteFooter .brand img { border-radius: 50%; background: rgba(255,255,255,.95); }

/* Cookie consent */
.footer-cookie-link {
  appearance: none;
  border: 0;
  padding: 0;
  color: #b9afc3;
  background: transparent;
  font: inherit;
  font-size: .8rem;
  cursor: pointer;
}
.footer-cookie-link:hover,
.footer-cookie-link:focus-visible { color: #fff; }
.cc-banner[hidden],
.cc-modal[hidden] { display: none !important; }
.cc-banner {
  position: fixed;
  z-index: 10000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  color: #241d28;
}
.cc-banner__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(113, 43, 195, .2);
  border-radius: 24px;
  padding: 23px 25px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 24px 70px rgba(35, 21, 43, .25);
  backdrop-filter: blur(18px);
}
.cc-banner__copy strong { display: block; margin-bottom: 6px; color: #2a2030; font-size: 1.05rem; }
.cc-banner__copy p { max-width: 760px; margin: 0; color: #69616d; font-size: .8rem; line-height: 1.62; }
.cc-banner__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.cc-button {
  appearance: none;
  min-height: 44px;
  border: 1px solid #762e99;
  border-radius: 999px;
  padding: 10px 17px;
  color: #68227f;
  background: #fff;
  font: inherit;
  font-size: .76rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.cc-button:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(89, 34, 108, .16); }
.cc-button:focus-visible,
.cc-modal__close:focus-visible,
.footer-cookie-link:focus-visible { outline: 3px solid rgba(184, 146, 255, .55); outline-offset: 3px; }
.cc-button--choice,
.cc-button--save { color: #fff; background: linear-gradient(120deg, #6e2a91, #a22db1); }
.cc-button--settings { border-color: #d6c9dc; color: #554a5a; }
.cc-modal {
  position: fixed;
  z-index: 10020;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}
.cc-modal__backdrop { position: absolute; inset: 0; background: rgba(18, 12, 22, .66); backdrop-filter: blur(8px); }
.cc-modal__dialog {
  position: relative;
  z-index: 1;
  overflow: auto;
  width: min(680px, 100%);
  max-height: min(780px, calc(100vh - 40px));
  border: 1px solid rgba(113, 43, 195, .18);
  border-radius: 28px;
  padding: 32px;
  color: #241d28;
  background: #fff;
  box-shadow: 0 34px 100px rgba(12, 6, 16, .34);
}
.cc-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #e3dce7;
  border-radius: 50%;
  color: #675b6c;
  background: #faf8fb;
  font-size: 1.35rem;
  cursor: pointer;
}
.cc-modal__eyebrow { color: #8b35a4; font-size: .65rem; font-weight: 900; letter-spacing: .14em; }
.cc-modal__header h2 { margin: 8px 44px 8px 0; color: #241d28; font-size: clamp(1.7rem, 4vw, 2.35rem); }
.cc-modal__header p { margin: 0 0 24px; color: #716975; font-size: .84rem; line-height: 1.65; }
.cc-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  border-top: 1px solid #ece7ef;
  padding: 20px 2px;
}
.cc-category strong { display: block; margin-bottom: 5px; color: #2a2230; font-size: .9rem; }
.cc-category p { margin: 0; color: #756d79; font-size: .74rem; line-height: 1.55; }
.cc-status { border-radius: 99px; padding: 7px 10px; color: #756d79; background: #f1edf3; font-size: .64rem; font-weight: 850; white-space: nowrap; }
.cc-status--active { color: #0c7558; background: #e3f8f0; }
.cc-category--toggle { position: relative; cursor: pointer; }
.cc-category--toggle input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.cc-switch {
  position: relative;
  width: 50px;
  height: 29px;
  border-radius: 999px;
  background: #cbc3cf;
  box-shadow: inset 0 0 0 1px rgba(44, 34, 48, .07);
  transition: background .18s ease;
}
.cc-switch::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(30, 20, 34, .22);
  transition: transform .18s ease;
}
.cc-category--toggle input:checked + .cc-switch { background: linear-gradient(120deg, #6e2a91, #a22db1); }
.cc-category--toggle input:checked + .cc-switch::after { transform: translateX(21px); }
.cc-category--toggle input:focus-visible + .cc-switch { outline: 3px solid rgba(184, 146, 255, .55); outline-offset: 3px; }
.cc-modal__footer { display: flex; justify-content: space-between; align-items: center; gap: 18px; border-top: 1px solid #ece7ef; padding-top: 22px; }
.cc-modal__footer a { color: #702b93; font-size: .76rem; font-weight: 800; text-underline-offset: 3px; }
.cc-modal-open { overflow: hidden; }

@media (max-width: 820px) {
  .cc-banner { right: 10px; bottom: 10px; left: 10px; }
  .cc-banner__content { grid-template-columns: 1fr; gap: 18px; border-radius: 21px; padding: 21px; }
  .cc-banner__actions { display: grid; grid-template-columns: 1fr 1fr; justify-content: stretch; }
  .cc-banner__actions .cc-button--settings { grid-column: 1 / -1; grid-row: 2; }
  .cc-button { width: 100%; }
  .cc-modal { padding: 10px; align-items: end; }
  .cc-modal__dialog { max-height: calc(100vh - 20px); border-radius: 25px; padding: 27px 22px 24px; }
  .cc-modal__footer { align-items: stretch; flex-direction: column; }
  .cc-modal__footer a { text-align: center; }
}
@media(max-width:1050px) {
  .heroGrid { grid-template-columns: 1fr; }
  .heroVisual { width: min(760px,100%); }
}
@media(max-width:760px) {
  header { position: relative; padding-top: 8px; background: #fff; }
  .nav { border-radius: 20px; grid-template-columns: 1fr auto; }
  .hero { padding-top: 54px; }
  .hero h1 { font-size: clamp(3rem,14vw,4.5rem); }
  .factGrid > div,.factGrid > div:first-child { min-height: 96px; border: 1px solid #e4e2e9; }
}

/* Story-Automatisierung */
.cards { grid-template-columns: repeat(3,minmax(0,1fr)); }
.cards article { min-height: 285px; }
.cards article.mint { background: linear-gradient(155deg,#fff 52%,#e5fbf3); }
.cards article.mint::after { background: #35b986; }
.cards article.peach { background: linear-gradient(155deg,#fff 52%,#fff0e8); }
.cards article.peach::after { background: #ff9565; }
.outputs { grid-template-columns: repeat(3,minmax(0,1fr)); }
.outputs article { min-width: 0; padding: 13px; }
.outputs article > span { min-width: 0; }
.outputs b { line-height: 1.35; }

.stories {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%,rgba(244,63,134,.11),transparent 26rem),
    radial-gradient(circle at 88% 74%,rgba(124,58,237,.1),transparent 30rem),
    #f8f7fa;
}
.stories::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -210px;
  top: -190px;
  border: 1px dashed rgba(203,47,113,.22);
  border-radius: 50%;
}
.storyGrid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 92px; align-items: center; }
.storyCopy h2 {
  max-width: 600px;
  margin: 17px 0 21px;
  color: #151218;
  font-size: clamp(2.55rem,4.8vw,4.45rem);
  letter-spacing: -.055em;
  line-height: 1.03;
}
.storyCopy h2 em {
  background: linear-gradient(110deg,#ef377f,#853bf0);
  background-clip: text;
  color: transparent;
  font-style: normal;
}
.storyCopy .copy { max-width: 610px; }
.storyCopy .btn { margin-top: 32px; }
.storyVisual {
  position: relative;
  min-height: 655px;
  display: grid;
  place-items: center;
}
.storyVisual::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border: 1px dashed rgba(210,48,120,.22);
  border-radius: 50%;
  background: radial-gradient(circle,rgba(255,255,255,.82),rgba(255,255,255,0) 67%);
}
.storyPhone {
  position: relative;
  z-index: 2;
  width: 336px;
  overflow: hidden;
  border: 7px solid #1b1720;
  border-radius: 37px;
  padding: 14px 13px 16px;
  color: #fff;
  background: #1b1720;
  box-shadow: 0 38px 90px rgba(55,32,72,.25);
}
.storyProgress { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 5px; margin-bottom: 11px; }
.storyProgress i { height: 3px; border-radius: 5px; background: rgba(255,255,255,.35); }
.storyProgress i:first-child { background: #fff; }
.storyProfile { display: flex; align-items: center; gap: 9px; margin: 0 4px 12px; }
.storyProfile img { width: 32px; height: 32px; border: 2px solid #fff; border-radius: 50%; background: #fff; object-fit: contain; }
.storyProfile span { display: grid; gap: 2px; }
.storyProfile b { font-size: .72rem; }
.storyProfile small { color: rgba(255,255,255,.7); font-size: .57rem; }
.storyCanvas {
  min-height: 416px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 23px;
  padding: 31px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 15%,rgba(255,255,255,.34),transparent 24%),
    radial-gradient(circle at 84% 78%,rgba(255,209,229,.55),transparent 30%),
    linear-gradient(145deg,#ff5a9c 0%,#b940d6 48%,#7139ef 100%);
}
.storyCanvas > span { border: 1px solid rgba(255,255,255,.5); border-radius: 99px; padding: 6px 10px; font-size: .55rem; font-weight: 900; letter-spacing: .14em; }
.storyCanvas img { width: 138px; margin: 25px 0 17px; border-radius: 50%; background: rgba(255,255,255,.96); filter: drop-shadow(0 18px 32px rgba(48,16,68,.25)); }
.storyCanvas b { max-width: 245px; font-size: 1.45rem; line-height: 1.05; }
.storyCanvas small { margin-top: 10px; color: rgba(255,255,255,.86); font-size: .73rem; }
.storyReply { margin-top: 13px; border: 1px solid rgba(255,255,255,.34); border-radius: 99px; padding: 11px 15px; color: rgba(255,255,255,.72); font-size: .65rem; }
.storyEvent {
  position: absolute;
  z-index: 4;
  min-width: 285px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid #e2dfe7;
  border-radius: 17px;
  padding: 14px 16px;
  color: #171419;
  background: rgba(255,255,255,.96);
  box-shadow: 0 20px 50px rgba(48,34,62,.16);
  backdrop-filter: blur(20px);
}
.storyEvent > i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg,#f43f86,#7c3aed);
  font-size: .72rem;
  font-style: normal;
  font-weight: 900;
}
.storyEvent > span { display: grid; gap: 4px; }
.storyEvent small { color: #817b88; font-size: .61rem; }
.storyEvent b { font-size: .73rem; }
.storyIncoming { top: 186px; right: -6px; }
.storyOutgoing { right: 30px; bottom: 67px; }
.storyOutgoing > i { color: #0d6647; background: #c9f5e4; }

@media(max-width:1100px) {
  .cards { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .storyGrid { grid-template-columns: 1fr; gap: 58px; }
  .storyVisual { width: min(760px,100%); margin: 0 auto; }
}
@media(max-width:760px) {
  .cards,.outputs { grid-template-columns: 1fr; }
  .cards article { min-height: 255px; }
  .storyCopy h2 { font-size: clamp(2.6rem,13vw,4rem); }
  .storyVisual { min-height: 610px; }
  .storyVisual::before { width: 390px; height: 390px; }
  .storyPhone { width: min(310px,86vw); }
  .storyCanvas { min-height: 370px; }
  .storyEvent { min-width: 0; width: min(335px,92vw); }
  .storyIncoming { top: 310px; right: 0; }
  .storyOutgoing { right: 12px; bottom: 2px; }
}

/* Legal pages */
.legalPage { min-height: 100vh; color: #171419; background: #f7f7fa; }
.legalHeader {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(37, 31, 43, .07);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
}
.legalHero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #ebe8ef;
  padding: 68px 0 78px;
  background:
    radial-gradient(circle at 86% 16%, rgba(206, 255, 235, .9), transparent 27%),
    radial-gradient(circle at 6% 86%, rgba(241, 220, 255, .92), transparent 30%),
    #fff;
}
.legalHero::after {
  content: "";
  position: absolute;
  top: 28px;
  right: -86px;
  width: 300px;
  height: 300px;
  border: 2px dashed rgba(117, 56, 203, .18);
  border-radius: 50%;
  transform: rotate(-14deg);
}
.legalBack {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 42px;
  color: #692bbf;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 850;
}
.legalBack:hover { color: #ed3f82; }
.legalHero .kicker { margin-bottom: 16px; }
.legalHero h1 {
  max-width: 900px;
  margin: 0 0 20px;
  font-size: clamp(3.35rem, 7.7vw, 6.6rem);
  line-height: .94;
  letter-spacing: -.075em;
}
.legalHero .legalIntro {
  max-width: 760px;
  margin: 0;
  color: #625d67;
  font-size: 1.08rem;
  line-height: 1.75;
}
.legalContent { padding: 74px 0 110px; }
.legalDocument {
  width: min(920px, 100%);
  display: grid;
  gap: 20px;
}
.legalColumns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.legalCard {
  border: 1px solid #e8e4ec;
  border-radius: 25px;
  padding: 34px 38px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(46, 32, 58, .055);
}
.legalLeadCard { background: linear-gradient(135deg, #fff 0%, #fbf7ff 54%, #f1fff9 100%); }
.legalAccentCard { border-color: #dcd2eb; background: linear-gradient(135deg, #f9f0ff 0%, #ecfff7 100%); }
.legalLabel {
  display: block;
  margin-bottom: 10px;
  color: #ed3f82;
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.legalCard h2 {
  margin: 0 0 16px;
  font-size: clamp(1.32rem, 3vw, 1.72rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.legalCard p, .legalCard li, .legalCard address { color: #5d5762; font-size: .96rem; line-height: 1.78; }
.legalCard p { margin: 0 0 14px; }
.legalCard p:last-child { margin-bottom: 0; }
.legalCard address { font-style: normal; }
.legalCard strong { color: #1c181f; }
.legalCard a { color: #672bc5; font-weight: 760; text-underline-offset: 3px; }
.legalCard ul { display: grid; gap: 8px; margin: 0; padding-left: 1.25rem; }
.legalUpdated { margin: 8px 2px 0; color: #817a85; text-align: right; font-size: .8rem; }

@media(max-width:760px) {
  .legalHero { padding: 42px 0 56px; }
  .legalHero::after { width: 210px; height: 210px; opacity: .7; }
  .legalBack { margin-bottom: 28px; }
  .legalHero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .legalHero .legalIntro { font-size: .98rem; }
  .legalContent { padding: 44px 0 76px; }
  .legalColumns { grid-template-columns: 1fr; }
  .legalCard { border-radius: 21px; padding: 27px 24px; }
  .legalUpdated { text-align: left; }
}

/* Kontaktformular */
.contactHero h1 { max-width: 980px; }
.contactContent {
  padding: 78px 0 112px;
  background:
    radial-gradient(circle at 8% 15%, rgba(244, 63, 134, .07), transparent 28rem),
    radial-gradient(circle at 94% 82%, rgba(124, 58, 237, .07), transparent 30rem),
    #f7f7fa;
}
.contactLayout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
}
.contactSidebar,
.contactFormCard {
  border: 1px solid #e4e0e8;
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 22px 68px rgba(47, 31, 59, .075);
}
.contactSidebar {
  position: sticky;
  top: 28px;
  overflow: hidden;
  padding: 38px 35px;
  background:
    radial-gradient(circle at 100% 0, rgba(244, 63, 134, .12), transparent 14rem),
    linear-gradient(155deg, #fff 0%, #fbf8fd 100%);
}
.contactSidebar h2,
.formHeading h2 {
  margin: 9px 0 14px;
  color: #171419;
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.contactSidebar > p:not(.legalLabel),
.formHeading > p:last-child {
  margin: 0;
  color: #6a646e;
  font-size: .94rem;
  line-height: 1.72;
}
.contactWays { display: grid; gap: 12px; margin-top: 30px; }
.contactWays a {
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid #e8e4ec;
  border-radius: 16px;
  padding: 15px;
  color: #211d24;
  background: rgba(255, 255, 255, .88);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.contactWays a:hover {
  transform: translateY(-2px);
  border-color: #d7c9e4;
  box-shadow: 0 12px 28px rgba(69, 43, 83, .08);
}
.contactWays i {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #f52577, #7a38ea);
  font-size: 1rem;
  font-style: normal;
  font-weight: 850;
}
.contactWays span { min-width: 0; display: grid; gap: 3px; }
.contactWays small { color: #827b86; font-size: .68rem; }
.contactWays b { overflow-wrap: anywhere; font-size: .86rem; }
.contactTrust {
  display: grid;
  gap: 5px;
  margin-top: 26px;
  border-radius: 17px;
  padding: 17px 18px;
  color: #176c50;
  background: #eaf8f2;
}
.contactTrust strong { font-size: .82rem; }
.contactTrust span { color: #477363; font-size: .72rem; line-height: 1.55; }
.contactFormCard { padding: 42px; }
.contactForm { position: relative; display: grid; gap: 23px; }
.formHeading { margin-bottom: 3px; }
.formHeading > p:last-child span,
.formField > span b { color: #d72f73; }
.formGrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.formField { display: grid; gap: 8px; color: #302b32; font-size: .79rem; font-weight: 780; }
.formField > span { display: flex; align-items: baseline; gap: 5px; }
.formField > span small { color: #918a94; font-size: .65rem; font-weight: 560; }
.formField input,
.formField select,
.formField textarea {
  width: 100%;
  border: 1px solid #dcd7e0;
  border-radius: 14px;
  padding: 14px 15px;
  color: #211d24;
  outline: none;
  background: #fff;
  font: inherit;
  font-size: .91rem;
  font-weight: 520;
  line-height: 1.5;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.formField textarea { min-height: 168px; resize: vertical; }
.formField select { min-height: 52px; cursor: pointer; }
.formField input:focus,
.formField select:focus,
.formField textarea:focus {
  border-color: #9a5bdd;
  background: #fefcff;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, .1);
}
.captchaBox {
  display: grid;
  grid-template-columns: 1fr 132px;
  gap: 20px;
  align-items: end;
  border: 1px solid #e0d8e6;
  border-radius: 19px;
  padding: 20px;
  background: linear-gradient(135deg, #fbf7ff, #effbf6);
}
.captchaBox > div { display: grid; gap: 5px; }
.captchaBox > div > span {
  color: #c82e6f;
  font-size: .64rem;
  font-weight: 880;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.captchaBox > div > strong { color: #211d24; font-size: 1.12rem; }
.captchaBox > div > small { color: #716b74; font-size: .7rem; line-height: 1.5; }
.captchaAnswer input { text-align: center; font-size: 1.08rem; font-weight: 800; }
.privacyCheck {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  color: #655f68;
  font-size: .76rem;
  line-height: 1.65;
}
.privacyCheck input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #a22db1;
}
.privacyCheck a { color: #6f2bc3; font-weight: 780; text-underline-offset: 3px; }
.contactSubmit { width: 100%; border: 0; cursor: pointer; font-family: inherit; }
.formFineprint { margin: -12px 0 0; color: #8c858f; text-align: center; font-size: .68rem; }
.formErrors,
.formSuccess {
  display: flex;
  gap: 13px;
  margin-bottom: 24px;
  border: 1px solid;
  border-radius: 17px;
  padding: 18px 20px;
}
.formErrors {
  display: block;
  border-color: #f0bfd0;
  color: #8a244b;
  background: #fff1f6;
  font-size: .82rem;
}
.formErrors strong { display: block; margin-bottom: 7px; }
.formErrors ul { display: grid; gap: 4px; margin: 0; padding-left: 1.1rem; }
.formSuccess { align-items: center; border-color: #bde7d5; color: #166447; background: #eaf9f2; }
.formSuccess i {
  flex: 0 0 39px;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #20a06e;
  font-style: normal;
  font-weight: 900;
}
.formSuccess div { display: grid; gap: 3px; }
.formSuccess strong { font-size: .9rem; }
.formSuccess span { color: #3e725f; font-size: .75rem; line-height: 1.5; }
.formHoneypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media(max-width:900px) {
  .contactLayout { grid-template-columns: 1fr; }
  .contactSidebar { position: static; }
}

@media(max-width:620px) {
  .contactContent { padding: 42px 0 74px; }
  .contactSidebar,
  .contactFormCard { border-radius: 21px; padding: 27px 23px; }
  .formGrid,
  .captchaBox { grid-template-columns: 1fr; }
  .captchaBox { align-items: stretch; }
  .captchaAnswer input { text-align: left; }
}
