/* =====================================================================
   AUDARA — audara.learny.page
   Bespoke landing design · TYPO3 v14 sitepackage
   ===================================================================== */

@font-face {
  font-family: 'Inter var';
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  src: url('/fileadmin/audara/fonts/Inter.var.woff2') format('woff2');
}

:root {
  --bg:        #142150;
  --bg-2:      #1a2a63;
  --bg-3:      #243778;
  /* dark, framed panels so cards pop against the bright background */
  --surface:   rgba(9,15,40,.55);
  --surface-2: rgba(14,22,58,.74);
  --line:      rgba(150,178,255,.32);
  --line-2:    rgba(178,202,255,.58);
  --text:      #ffffff;
  --muted:     #dde2f8;
  --faint:     #afb6d9;

  --brand:   #4a72ff;
  --brand-2: #6e8dff;
  --brand-3: #aabdff;
  --accent:  #ffb13a;
  --accent-2:#ff6a3d;

  --grad:      linear-gradient(120deg, #6e8dff 0%, #9bb2ff 50%, #cdd8ff 100%);
  --grad-hot:  linear-gradient(115deg, #6e8dff 0%, #a585ff 45%, #ffb13a 110%);
  --glow-blue: radial-gradient(closest-side, rgba(110,141,255,.85), rgba(110,141,255,0));
  --glow-orange: radial-gradient(closest-side, rgba(255,177,58,.62), rgba(255,177,58,0));

  --r-sm: 12px; --r: 18px; --r-lg: 26px; --r-xl: 34px;
  --maxw: 1200px;
  --font: 'Inter var', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
  --shadow: 0 30px 80px -30px rgba(0,0,0,.7);
  --shadow-blue: 0 24px 70px -24px rgba(50,87,243,.55);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1500px 1000px at 80% -12%, rgba(80,125,255,.62), transparent 60%),
    radial-gradient(1250px 950px at -8% 4%, rgba(150,100,255,.48), transparent 58%),
    radial-gradient(1100px 880px at 102% 58%, rgba(45,180,255,.30), transparent 60%),
    radial-gradient(1050px 820px at 45% 122%, rgba(255,140,48,.22), transparent 60%),
    linear-gradient(165deg, #1b2c66 0%, #142150 48%, #1a2c68 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
::selection { background: rgba(79,115,253,.35); color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 820px; }

.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  background-size: 200% auto; animation: textShine 4s linear infinite;
}
@keyframes textShine { to { background-position: 200% center; } }
.ic { width: 1.15em; height: 1.15em; display: inline-block; vertical-align: -.18em; }

.skip-link {
  position: absolute; left: 14px; top: -60px; z-index: 200;
  background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 10px;
  transition: top .2s;
}
.skip-link:focus { top: 14px; }

/* ---------- brand mark (animated EQ) ---------- */
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.02em; }
.brand__name { font-size: 1.18rem; }
.brand__logo { width: 34px; height: 34px; border-radius: 22.37%; box-shadow: 0 6px 18px -6px rgba(74,114,255,.7), inset 0 0 0 1px rgba(255,255,255,.14); }
.brand__mark { display: inline-flex; align-items: flex-end; gap: 3px; height: 22px; }
.brand__bar {
  width: 3.5px; border-radius: 3px; background: var(--grad);
  animation: eqbar 1.2s var(--ease) infinite;
}
.brand__bar:nth-child(1){ height: 40%; animation-delay: -.0s }
.brand__bar:nth-child(2){ height: 90%; animation-delay: -.35s }
.brand__bar:nth-child(3){ height: 60%; animation-delay: -.6s }
.brand__bar:nth-child(4){ height: 100%; animation-delay: -.15s }
.brand__mark--lg { height: 46px; gap: 6px; }
.brand__mark--lg .brand__bar { width: 7px; }
@keyframes eqbar { 0%,100%{ transform: scaleY(.45); } 50%{ transform: scaleY(1); } }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 100; transition: background .3s, border-color .3s, backdrop-filter .3s; border-bottom: 1px solid transparent; }
.nav__inner { display: flex; align-items: center; gap: 22px; height: 74px; }
.nav__links { display: flex; gap: 30px; margin: 0 auto; }
.nav__links a { color: var(--muted); font-size: .96rem; font-weight: 500; transition: color .2s; position: relative; }
.nav__links a:hover { color: var(--text); }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background: var(--grad); border-radius:2px; transition: width .25s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav.is-scrolled { background: rgba(8,9,17,.72); backdrop-filter: saturate(150%) blur(16px); -webkit-backdrop-filter: saturate(150%) blur(16px); border-color: var(--line); }
.nav__soon { display: none; }
@media (min-width: 1080px){ .nav__soon { display: inline-flex; } }

/* ---------- pills / tags ---------- */
.pill { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600; padding: 7px 14px; border-radius: 100px; border: 1px solid var(--line-2); background: var(--surface); color: var(--muted); letter-spacing: .02em; }
.pill--soon .pill__dot, .eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(255,149,0,.5); animation: ping 2s infinite; }
@keyframes ping { 0%{ box-shadow: 0 0 0 0 rgba(255,149,0,.45);} 70%{ box-shadow: 0 0 0 9px rgba(255,149,0,0);} 100%{ box-shadow: 0 0 0 0 rgba(255,149,0,0);} }
.tag { display: inline-block; font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 3px 8px; border-radius: 7px; background: var(--surface-2); color: var(--brand-3); border: 1px solid var(--line); vertical-align: middle; margin-left: 8px; }
.tag--pro { background: linear-gradient(120deg, rgba(255,149,0,.18), rgba(255,106,61,.18)); color: #ffcf8a; border-color: rgba(255,149,0,.35); }

/* ---------- eyebrows / section heads ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.eyebrow--c { color: var(--brand-3); }
.section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }
.section__head { max-width: 720px; margin: 0 auto clamp(40px,6vw,68px); text-align: center; }
.section__head .eyebrow { margin-bottom: 18px; }
.section__title { font-size: clamp(1.9rem, 4.4vw, 3.1rem); line-height: 1.07; letter-spacing: -.03em; font-weight: 800; }
.section__lead { margin-top: 20px; color: var(--muted); font-size: clamp(1.02rem,1.6vw,1.2rem); }

/* ---------- HERO ---------- */
.hero { position: relative; padding: clamp(48px,7vw,96px) 0 clamp(60px,8vw,110px); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(8px); }
.hero__glow--blue { width: 760px; height: 760px; background: var(--glow-blue); top: -240px; right: -160px; animation: drift 16s ease-in-out infinite alternate; }
.hero__glow--orange { width: 520px; height: 520px; background: var(--glow-orange); bottom: -220px; left: -120px; animation: drift 20s ease-in-out infinite alternate-reverse; }
@keyframes drift { from{ transform: translate3d(0,0,0) scale(1);} to{ transform: translate3d(40px,30px,0) scale(1.12);} }
.hero__grid { position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: radial-gradient(1000px 600px at 70% 10%, #000 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(1000px 600px at 70% 10%, #000 10%, transparent 75%); }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px,5vw,70px); align-items: center; }
.hero__copy .eyebrow { margin-bottom: 22px; }
.hero__title { font-size: clamp(2.6rem, 6.4vw, 4.7rem); line-height: 1.15; letter-spacing: -.045em; font-weight: 850; }
.hero__title span { display: block; }
.hero__sub { margin-top: 26px; max-width: 30ch; font-size: clamp(1.05rem,1.7vw,1.28rem); color: var(--muted); }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 34px; }
.hero__note { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; font-size: .92rem; color: var(--faint); }
.hero__note .ic { color: var(--brand-3); }

/* hero visual */
.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__phone { position: relative; width: min(420px, 80%); }
.hero__photo { position: relative; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow), var(--shadow-blue); aspect-ratio: 3/4; background: var(--bg-3); animation: floaty 7s var(--ease) infinite; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.hero__photo:hover { animation-play-state: paused; transform: translateY(-16px) rotate(0deg) scale(1.03); box-shadow: 0 40px 100px -20px rgba(74,114,255,1); border-color: #fff; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo-veil { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(6,7,13,.55) 100%); }
@keyframes floaty { 0%,100%{ transform: translateY(0) rotate(-.6deg);} 50%{ transform: translateY(-16px) rotate(.4deg);} }
.nowcard {
  position: absolute; left: -34px; bottom: 36px; display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 16px; background: rgba(13,16,28,.72);
  border: 1px solid var(--line-2); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow); animation: floaty 7s var(--ease) infinite .4s; max-width: 250px;
}
.nowcard__art { width: 44px; height: 44px; border-radius: 11px; background: var(--grad-hot); display: grid; place-items: center; flex: none; }
.nowcard__meta { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.nowcard__meta small { font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-3); }
.nowcard__meta strong { font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nowcard__meta span { font-size: .78rem; color: var(--muted); }
.nowcard__hi { position: absolute; top: -10px; right: -10px; font-size: .56rem; font-weight: 700; letter-spacing: .06em; padding: 4px 7px; border-radius: 7px; background: var(--accent); color: #1a1206; }

/* equalizer */
.eq { display: inline-flex; align-items: flex-end; gap: 3px; height: 20px; }
.eq i { width: 3px; background: #fff; border-radius: 2px; height: 100%; transform-origin: bottom; animation: eqbar 1s var(--ease) infinite; }
.eq i:nth-child(2){ animation-delay: -.3s } .eq i:nth-child(3){ animation-delay: -.6s } .eq i:nth-child(4){ animation-delay: -.15s } .eq i:nth-child(5){ animation-delay: -.45s }
.eq--sm { height: 13px; } .eq--sm i { width: 2.5px; background: var(--brand-3); }

/* ---------- app icon ---------- */
.appicon { display: inline-flex; line-height: 0; }
.appicon img { border-radius: 22.37%; box-shadow: 0 20px 50px -14px rgba(50,87,243,.65), inset 0 0 0 1px rgba(255,255,255,.10); }
.appicon--hero { margin-bottom: 22px; }
.appicon--hero img { width: 78px; height: 78px; }
.appicon--cta img { width: 92px; height: 92px; }

/* ---------- store badges ---------- */
.storebadges { display: inline-flex; gap: 12px; flex-wrap: wrap; }
.storebadge {
  display: inline-flex; align-items: center; gap: 11px; padding: 10px 18px; border-radius: 14px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-2); color: var(--text);
  transition: transform .3s var(--ease), border-color .3s, background .3s, box-shadow .3s, filter .3s; position: relative;
}
.storebadge__logo { width: 26px; height: 26px; flex: none; }
.storebadge__txt { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.storebadge__txt small { font-size: .64rem; color: var(--muted); letter-spacing: .02em; }
.storebadge__txt strong { font-size: 1.04rem; font-weight: 700; letter-spacing: -.01em; }

/* live download link (Apple): filled primary CTA — deep brand blue, glow, tactile top light */
a.storebadge {
  background: linear-gradient(165deg, #4e6ffb 0%, #2b47d8 100%);
  border-color: rgba(255,255,255,.32);
  box-shadow: 0 14px 34px -14px rgba(74,114,255,.75), inset 0 1px 0 rgba(255,255,255,.28);
  overflow: hidden;
}
a.storebadge .storebadge__txt small { color: rgba(255,255,255,.88); }
a.storebadge::after { /* sheen sweep on hover */
  content: ""; position: absolute; top: 0; bottom: 0; left: -75%; width: 55%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  transform: skewX(-18deg); transition: left .55s var(--ease); pointer-events: none;
}
a.storebadge:hover {
  transform: translateY(-4px) scale(1.03); border-color: rgba(255,255,255,.6); filter: brightness(1.07);
  box-shadow: 0 20px 44px -14px rgba(74,114,255,.9), inset 0 1px 0 rgba(255,255,255,.3);
}
a.storebadge:hover::after { left: 120%; }
a.storebadge:focus-visible { outline: 2px solid var(--brand-3); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  a.storebadge::after { display: none; }
  a.storebadge:hover { transform: none; }
}

/* coming-soon placeholder (Google Play): quiet ghost, clearly not clickable yet */
span.storebadge { opacity: .55; border-color: var(--line); filter: saturate(.8); cursor: default; }
span.storebadge .storebadge__txt strong { font-weight: 600; }

.storebadges--lg .storebadge { padding: 13px 22px; }
.storebadges--sm .storebadge { padding: 8px 13px; border-radius: 12px; }
.storebadges--sm .storebadge__logo { width: 20px; height: 20px; }
.storebadges--sm .storebadge__txt strong { font-size: .9rem; }

/* ---------- sources strip ---------- */
.sources { padding: 30px 0 8px; }
.sources__title { text-align: center; color: var(--faint); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; }
.sources__list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px; margin: 22px 0 12px; }
.sources__list li { color: var(--muted); font-weight: 700; font-size: 1.08rem; letter-spacing: -.01em; opacity: .8; transition: opacity .2s, color .2s; }
.sources__list li:hover { opacity: 1; color: var(--text); }
.sources__note { text-align: center; color: var(--faint); font-size: .86rem; }

/* ---------- feature cards ---------- */
.cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.cards > .card { flex: 0 1 calc(33.333% - 14px); }
.card {
  position: relative; padding: 30px 28px; border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--line); overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s, background .35s;
}
.card::before { content:""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .35s; }
.card:hover { transform: translateY(-6px); background: var(--surface-2); border-color: transparent; }
.card:hover::before { opacity: .55; }
.card__icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 15px; background: linear-gradient(140deg, rgba(79,115,253,.22), rgba(79,115,253,.06)); border: 1px solid var(--line-2); color: var(--brand-3); margin-bottom: 20px; }
.card__icon svg { width: 26px; height: 26px; }
.card__title { font-size: 1.22rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: 9px; }
.card__text { color: var(--muted); font-size: .98rem; }

/* ---------- showcase / intelligence ---------- */
.showcase__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,6vw,80px); align-items: center; }
.showcase__media { position: relative; aspect-ratio: 1/1; display: grid; place-items: center; }
.mix { position: relative; width: 84%; height: 84%; display: grid; place-items: center; }
.mix__halo { position: absolute; inset: 8%; border-radius: 50%; background: var(--glow-blue); filter: blur(6px); animation: pulse 5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{ transform: scale(.92); opacity: .7 } 50%{ transform: scale(1.05); opacity: 1 } }
.mix__core { width: 96px; height: 96px; border-radius: 50%; display: grid; place-items: center; background: rgba(13,16,28,.8); border: 1px solid var(--line-2); color: var(--brand-3); box-shadow: var(--shadow-blue); z-index: 2; }
.mix__core svg { width: 42px; height: 42px; animation: spin 22s linear infinite; }
@keyframes spin { to { transform: rotate(360deg) } }
.mix__chip { position: absolute; display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 12px; background: rgba(13,16,28,.78); border: 1px solid var(--line-2); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); font-size: .82rem; font-weight: 600; box-shadow: var(--shadow); white-space: nowrap; }
.mix__chip--1 { top: 8%; left: -4%; animation: floaty 6s var(--ease) infinite; }
.mix__chip--2 { top: 46%; right: -8%; animation: floaty 6.6s var(--ease) infinite .5s; }
.mix__chip--3 { bottom: 8%; left: 6%; animation: floaty 7.2s var(--ease) infinite .9s; }
.mix__chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.mix__chip .star { color: var(--accent); }

.ticks { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.ticks li { position: relative; padding-left: 34px; color: var(--text); font-size: 1.02rem; }
.ticks li::before { content:""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(140deg, var(--brand-2), var(--brand)); }
.ticks li::after { content:""; position: absolute; left: 7.5px; top: 8px; width: 7px; height: 4px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }
.ticks--pro li.is-head { padding-left: 0; color: var(--muted); font-weight: 600; }
.ticks--pro li.is-head::before, .ticks--pro li.is-head::after { display: none; }

/* ---------- sound ---------- */
.sound .stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; max-width: 920px; margin: 0 auto; }
.stat { text-align: center; padding: 30px 18px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); }
.stat__v { display: block; font-size: clamp(2.1rem,4.5vw,3.2rem); font-weight: 850; letter-spacing: -.04em; line-height: 1; }
.stat__v small { font-size: .42em; font-weight: 700; margin-left: 3px; }
.stat__l { display: block; margin-top: 12px; color: var(--muted); font-size: .9rem; }
.sound__formats { text-align: center; margin-top: 30px; color: var(--faint); letter-spacing: .12em; font-size: .9rem; }

/* ---------- platforms ---------- */
.platforms { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.plat { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 30px 14px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); transition: transform .3s var(--ease), background .3s, color .3s; color: var(--muted); }
.plat:hover { transform: translateY(-4px); background: var(--surface-2); color: var(--text); }
.plat__ic svg { width: 38px; height: 38px; }
.plat__l { font-size: .92rem; font-weight: 600; }

/* ---------- privacy ---------- */
.privacy { overflow: hidden; }
.privacy__bg { position: absolute; inset: 0; z-index: -1; }
.privacy__bg .hero__glow--blue { width: 700px; height: 700px; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: .5; }
.privacy__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px,6vw,72px); align-items: center; }
.privacy__copy .section__title { text-align: left; }
.privacy__grid { display: grid; gap: 16px; }
.pcard { display: flex; gap: 16px; align-items: flex-start; padding: 22px 22px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); }
.pcard__ic { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(140deg, rgba(79,115,253,.22), rgba(79,115,253,.05)); border: 1px solid var(--line-2); color: var(--brand-3); }
.pcard__ic svg { width: 22px; height: 22px; }
.pcard h3 { font-size: 1.05rem; margin-bottom: 4px; }
.pcard p { color: var(--muted); font-size: .94rem; }

/* ---------- pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; max-width: 880px; margin: 0 auto; }
.plan { position: relative; padding: 38px 34px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); }
.plan--pro { background: linear-gradient(165deg, rgba(50,87,243,.14), rgba(79,115,253,.04)); border-color: rgba(79,115,253,.4); box-shadow: var(--shadow-blue); }
.plan__badge { position: absolute; top: 20px; right: 22px; font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 5px 11px; border-radius: 100px; background: var(--grad); color: #fff; }
.plan__name { font-size: 1.3rem; font-weight: 750; }
.plan__price { font-size: 2.4rem; font-weight: 850; letter-spacing: -.03em; margin: 8px 0 2px; }
.plan__tag { color: var(--muted); margin-bottom: 22px; }
.plan .ticks { margin-top: 0; }

.pricing__note { text-align: center; margin-top: 30px; color: var(--faint); font-size: .9rem; }

/* ---------- faq ---------- */
.faq__list { display: grid; gap: 12px; }
.qa { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); overflow: hidden; transition: border-color .25s, background .25s; }
.qa[open] { border-color: var(--line-2); background: var(--surface-2); }
.qa summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; font-weight: 650; font-size: 1.06rem; }
.qa summary::-webkit-details-marker { display: none; }
.qa__plus { position: relative; flex: none; width: 18px; height: 18px; }
.qa__plus::before, .qa__plus::after { content:""; position: absolute; inset: 0; margin: auto; background: var(--brand-3); border-radius: 2px; transition: transform .28s var(--ease); }
.qa__plus::before { width: 16px; height: 2px; }
.qa__plus::after { width: 2px; height: 16px; }
.qa[open] .qa__plus::after { transform: rotate(90deg); opacity: 0; }
.qa__a { padding: 0 24px 24px; color: var(--muted); max-width: 68ch; }

/* ---------- cta ---------- */
.cta { position: relative; padding: clamp(80px,12vw,150px) 0; text-align: center; overflow: hidden; }
.cta__bg { position: absolute; inset: 0; z-index: -1; }
.cta__bg .hero__glow--blue { width: 760px; height: 760px; top: 50%; left: 30%; transform: translate(-50%,-50%); }
.cta__bg .hero__glow--orange { width: 480px; height: 480px; top: 40%; left: 75%; transform: translate(-50%,-50%); }
.cta__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.cta__title { font-size: clamp(2.1rem,5vw,3.4rem); font-weight: 850; letter-spacing: -.035em; line-height: 1.05; max-width: 16ch; }
.cta__text { color: var(--muted); font-size: 1.12rem; max-width: 40ch; }
.cta .storebadges { margin-top: 8px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 64px 0 40px; margin-top: 20px; background: linear-gradient(180deg, transparent, rgba(0,0,0,.25)); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__tagline { color: var(--muted); margin-top: 16px; max-width: 26ch; }
.footer__made { color: var(--faint); font-size: .84rem; margin-top: 14px; }
.footer__head { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); margin-bottom: 16px; }
.footer__col a { display: block; color: var(--muted); padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--text); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--faint); font-size: .86rem; }
.footer__disclaimer { flex-basis: 100%; max-width: 84ch; font-size: .8rem; line-height: 1.55; margin-bottom: 6px; }

/* ---------- language switch ---------- */
.langswitch { position: relative; }
.langswitch summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border-radius: 11px; border: 1px solid var(--line-2); background: var(--surface); color: var(--muted); font-size: .9rem; font-weight: 600; transition: color .2s, background .2s; text-transform: uppercase; }
.langswitch summary::-webkit-details-marker { display: none; }
.langswitch summary:hover { color: var(--text); background: var(--surface-2); }
.langswitch__globe { width: 17px; height: 17px; }
.langswitch__chev { width: 14px; height: 14px; transition: transform .25s; }
.langswitch[open] .langswitch__chev { transform: rotate(180deg); }
.langswitch__menu {
  position: absolute; right: 0; top: calc(100% + 10px); width: 300px;
  padding: 8px; border-radius: 16px; background: rgba(11,13,23,.92); border: 1px solid var(--line-2);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px; z-index: 120;
}
.langswitch__item { display: flex; align-items: center; gap: 9px; padding: 9px 11px; border-radius: 10px; color: var(--muted); font-size: .9rem; transition: background .15s, color .15s; }
.langswitch__item:hover { background: var(--surface-2); color: var(--text); }
.langswitch__item.is-active { color: var(--text); background: rgba(79,115,253,.16); }
.langswitch__code { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--brand-3); min-width: 20px; }
.langswitch__flag { width: 20px; height: 15px; flex: none; border-radius: 3px; object-fit: cover; box-shadow: 0 0 0 1px rgba(255,255,255,.14); }
.langswitch summary .langswitch__flag--current { width: 18px; height: 14px; }
.langswitch__label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- mobile menu / burger ---------- */
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav__burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.mobile { display: none; flex-direction: column; padding: 8px 28px 22px; border-bottom: 1px solid var(--line); background: rgba(8,9,17,.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.mobile a { padding: 13px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-weight: 600; }
.mobile a:last-child { border-bottom: none; }

/* ---------- reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .brand__bar, .eq i, .hero__glow, .hero__photo, .nowcard, .mix__halo, .mix__core svg, .mix__chip, .pill--soon .pill__dot, .eyebrow__dot { animation: none !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .cards > .card { flex-basis: calc(50% - 10px); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__soon { display: none; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy .eyebrow, .hero__cta { justify-content: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__visual { margin-top: 30px; order: -1; }
  .hero__phone { width: min(330px, 78%); }
  .showcase__inner, .privacy__inner { grid-template-columns: 1fr; }
  .showcase__media { order: 2; max-width: 420px; margin: 0 auto; width: 100%; }
  .privacy__copy .section__title { text-align: center; }
  .privacy__copy { text-align: center; }
  .stats { grid-template-columns: repeat(2,1fr) !important; }
  .platforms { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .plans { grid-template-columns: 1fr; }
  .cards > .card { flex-basis: 100%; }
  .footer__inner { grid-template-columns: 1fr; }
  .nowcard { left: 0; }
  .langswitch__menu { position: fixed; top: 64px; left: 12px; right: 12px; width: auto; grid-template-columns: 1fr 1fr; }
  .storebadges { justify-content: center; }
}

/* ---------- legal pages (Datenschutz / Impressum) ---------- */
.legal { padding: clamp(108px, 14vw, 168px) 0 clamp(72px, 10vw, 120px); position: relative; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-3); font-weight: 600; font-size: .92rem; }
.legal__back:hover { color: #fff; }
.legal__title { margin-top: 22px; font-size: clamp(2rem, 4.6vw, 3rem); line-height: 1.07; letter-spacing: -.03em; font-weight: 800; }
.legal__updated { margin-top: 12px; color: var(--faint); font-size: .92rem; }
.legal__lead { margin-top: 22px; color: var(--muted); font-size: 1.12rem; max-width: 62ch; }
.legal__body { margin-top: 12px; }
.legal__body h2 { margin-top: 46px; font-size: clamp(1.3rem, 2.4vw, 1.6rem); font-weight: 800; letter-spacing: -.02em; }
.legal__body h3 { margin-top: 28px; font-size: 1.08rem; font-weight: 700; color: var(--brand-3); }
.legal__body p { margin-top: 14px; color: var(--muted); }
.legal__body ul { margin: 14px 0; padding-left: 1.3em; color: var(--muted); }
.legal__body li { margin-top: 8px; }
.legal__body li::marker { color: var(--brand-3); }
.legal__body a { color: var(--brand-3); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.legal__body a:hover { color: #fff; }
.legal__body strong { color: var(--text); font-weight: 700; }
.legal__card { margin-top: 24px; padding: 22px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); }
.legal__card p { margin-top: 4px; }
.legal__card p:first-child { margin-top: 0; }
.legal__dl { margin-top: 26px; display: grid; grid-template-columns: minmax(190px, max-content) 1fr; gap: 12px 28px; }
.legal__dl dt { color: var(--faint); }
.legal__dl dd { color: var(--text); }
.legal__dl dd a { color: var(--brand-3); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 560px) {
  .legal__dl { grid-template-columns: 1fr; gap: 3px 0; }
  .legal__dl dd { margin-bottom: 12px; }
}
