/* =================================================================
   StreamWriter Studio — Dark luxury design system (Apple-inspired)
   ================================================================= */

:root {
  /* Accents */
  --blue:   #0a84ff;   /* Apple blue (dark mode) */
  --blue-d: #0070e0;
  --indigo: #5e5ce6;
  --green:  #30d158;
  --orange: #ff9f0a;
  --purple: #bf5af2;
  --pink:   #ff375f;
  --teal:   #40c8e0;
  --gold:   #d8b878;   /* champagne accent for luxe touches */

  /* Dark neutrals */
  --bg:        #0a0a0c;   /* page background */
  --bg-alt:    #121216;   /* alternating sections */
  --surface:   #16161c;   /* cards */
  --surface-2: #1c1c24;   /* raised elements */
  --ink:       #f5f5f7;   /* primary text */
  --ink-soft:  #a1a1aa;   /* secondary text */
  --ink-dim:   #6e6e78;   /* tertiary text */
  --line:      rgba(255,255,255,.10);
  --line-soft: rgba(255,255,255,.06);

  --radius:     18px;
  --radius-lg:  28px;
  --maxw:       1120px;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Helvetica Neue", Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 72px; color-scheme: dark; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient glow fixed behind everything */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(50% 40% at 50% -5%, rgba(10,132,255,.16), transparent 70%),
    radial-gradient(40% 35% at 85% 8%, rgba(94,92,230,.12), transparent 70%),
    radial-gradient(40% 35% at 12% 4%, rgba(64,200,224,.10), transparent 70%);
}

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

a { color: var(--blue); text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #1191ff, var(--blue));
  color: #fff;
  font-size: 17px; font-weight: 500;
  padding: 12px 26px; border-radius: 980px;
  border: 1px solid rgba(255,255,255,.14); cursor: pointer;
  box-shadow: 0 6px 24px rgba(10,132,255,.35), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s;
}
.btn:hover { transform: translateY(-1px) scale(1.02); box-shadow: 0 10px 32px rgba(10,132,255,.5), inset 0 1px 0 rgba(255,255,255,.3); }
.btn:active { transform: scale(.98); }
.btn--small { font-size: 14px; padding: 7px 16px; box-shadow: 0 4px 14px rgba(10,132,255,.3), inset 0 1px 0 rgba(255,255,255,.2); }
.btn--ghost {
  background: rgba(255,255,255,.06); color: var(--ink);
  border: 1px solid var(--line); box-shadow: none;
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); transform: none; box-shadow: none; }
.btn--light {
  background: linear-gradient(180deg, #fff, #ededf0); color: #111;
  border-color: rgba(0,0,0,.1);
  box-shadow: 0 10px 30px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.6);
}
.btn--light:hover { background: linear-gradient(180deg, #fff, #e2e2e6); }

/* ===================== NAVBAR ===================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,12,16,.6);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  height: 58px; padding: 0 24px;
  display: flex; align-items: center; gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 600; }
.nav__logo { width: 28px; height: 28px; border-radius: 7px; }
.nav__name { font-size: 17px; letter-spacing: -.01em; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { color: var(--ink-soft); font-size: 14px; transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__actions { display: flex; align-items: center; gap: 14px; }

/* Language switcher */
.lang { position: relative; }
.lang__btn {
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.07); color: var(--ink);
  border: 1px solid var(--line); border-radius: 980px;
  padding: 6px 12px; font-size: 13px; font-weight: 500; cursor: pointer;
  transition: background .2s;
}
.lang__btn:hover { background: rgba(255,255,255,.12); }
.lang__menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: rgba(28,28,36,.85); backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 12px; list-style: none; min-width: 150px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  padding: 6px; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.lang.open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__menu li {
  padding: 9px 12px; border-radius: 8px; font-size: 14px; cursor: pointer;
  display: flex; align-items: center; gap: 8px; color: var(--ink-soft);
}
.lang__menu li:hover { background: rgba(255,255,255,.07); color: var(--ink); }
.lang__menu li[aria-selected="true"] { font-weight: 600; color: var(--ink); }
.lang__menu li[aria-selected="true"]::after { content: "✓"; margin-left: auto; color: var(--blue); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ===================== HERO ===================== */
.hero { position: relative; overflow: hidden; text-align: center; padding: 96px 0 0; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(10,132,255,.22), transparent 70%),
    radial-gradient(40% 40% at 80% 10%, rgba(191,90,242,.16), transparent 70%),
    radial-gradient(40% 40% at 20% 10%, rgba(64,200,224,.14), transparent 70%);
}
.hero__icon {
  position: relative; z-index: 0;
  display: inline-block; width: 112px; height: 112px; margin: 0 auto 26px;
  animation: iconIn .8s var(--ease) both;
}
/* soft round blue glow behind the icon (no square edges) */
.hero__icon::before {
  content: ""; position: absolute; left: 50%; top: 54%;
  width: 165%; height: 165%; transform: translate(-50%, -50%);
  border-radius: 50%; z-index: -1;
  background: radial-gradient(closest-side, rgba(10,132,255,.5), rgba(10,132,255,0) 70%);
  filter: blur(12px);
}
.hero__icon img {
  width: 112px; height: 112px; border-radius: 26px;
  filter: drop-shadow(0 16px 34px rgba(0,0,0,.55));
}
@keyframes iconIn { from { opacity: 0; transform: translateY(-12px) scale(.9); } to { opacity: 1; transform: none; } }

.hero__eyebrow {
  font-weight: 600; font-size: 15px; margin: 20px 0 14px;
  letter-spacing: .14em; text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold), #f0dcae);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__title { font-size: clamp(42px, 7vw, 76px); font-weight: 700; letter-spacing: -.025em; line-height: 1.05;
  background: linear-gradient(180deg, #ffffff, #c7c7d1);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__subtitle { font-size: clamp(18px, 2.4vw, 22px); color: var(--ink-soft); max-width: 640px; margin: 24px auto 0; }
.hero__cta { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.hero__note { color: var(--ink-dim); font-size: 14px; margin-top: 18px; }
.hero__visual { margin-top: 60px; position: relative; }
.hero__visual::after {
  content: ""; position: absolute; left: 50%; top: 40%; transform: translateX(-50%);
  width: 70%; height: 60%; z-index: -1;
  background: radial-gradient(closest-side, rgba(10,132,255,.4), transparent 70%);
  filter: blur(60px);
}
.hero__shot { display: block; }

/* ===================== MACBOOK (redesigned, notch + edge-to-edge) ===================== */
.macbook { width: 100%; max-width: 1000px; margin: 0 auto; }

/* Display lid — thin uniform bezel, screen fills completely */
.macbook__screen {
  position: relative;
  background: #0c0c10;                  /* the bezel color */
  border-radius: 20px;
  padding: 9px;                          /* uniform bezel */
  box-shadow:
    0 45px 110px rgba(0,0,0,.72),
    0 0 0 1px rgba(255,255,255,.10),
    inset 0 1px 0 rgba(255,255,255,.10);
}
/* Natural image flow — keeps the screenshot's real aspect ratio, never distorts */
.macbook__screen > img,
.macbook__screen > .carousel__viewport {
  display: block; width: 100%;
  border-radius: 11px; overflow: hidden;
}
.macbook__screen > img { height: auto; }
/* Modern MacBook notch with camera */
.macbook__camera {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 24%; max-width: 168px; height: 15px;
  background: #0c0c10; border-radius: 0 0 10px 10px; z-index: 3;
}
.macbook__camera::after {
  content: ""; position: absolute; bottom: 3.5px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2c2c34, #050507);
}

/* Base / hinge the lid folds onto */
.macbook__base {
  position: relative;
  width: 116%; left: -8%;
  height: 15px;
  background: linear-gradient(180deg, #5a5a62 0%, #2a2a30 16%, #16161b 56%, #0a0a0e 100%);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 36px 50px rgba(0,0,0,.6);
}
.macbook__base::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: rgba(255,255,255,.22);
}
.macbook__base::after {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 13%; height: 7px;
  background: #060608;
  border-radius: 0 0 9px 9px;
}

/* ===================== STATS ===================== */
.stats { padding: 72px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; text-align: center; }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num { font-size: clamp(28px,4vw,42px); font-weight: 700; letter-spacing: -.02em;
  background: linear-gradient(135deg, #ffffff 0%, var(--blue) 60%, var(--indigo) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { color: var(--ink-soft); font-size: 15px; }

/* ===================== SECTIONS ===================== */
.section { padding: 110px 0; position: relative; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section__title { font-size: clamp(30px,4.5vw,50px); font-weight: 700; letter-spacing: -.025em; text-align: center;
  background: linear-gradient(180deg, #ffffff, #b9b9c4);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section__lead { text-align: center; color: var(--ink-soft); font-size: clamp(17px,2vw,21px); margin-top: 16px; }

/* ===================== FEATURES ===================== */
.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 60px; }
.feature {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08);
}
.feature__icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.12);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature__icon--blue   { background: rgba(10,132,255,.16);  color: var(--blue); }
.feature__icon--green  { background: rgba(48,209,88,.16);   color: var(--green); }
.feature__icon--orange { background: rgba(255,159,10,.16);  color: var(--orange); }
.feature__icon--purple { background: rgba(191,90,242,.16);  color: var(--purple); }
.feature__icon--pink   { background: rgba(255,55,95,.16);   color: var(--pink); }
.feature__icon--teal   { background: rgba(64,200,224,.18);  color: var(--teal); }
.feature h3 { font-size: 21px; font-weight: 600; margin-bottom: 8px; letter-spacing: -.01em; color: var(--ink); }
.feature p { color: var(--ink-soft); font-size: 16px; }

/* ===================== CAROUSEL ===================== */
.carousel {
  position: relative; max-width: 1080px; margin: 60px auto 0;
  display: flex; align-items: center; gap: 16px; padding: 0 24px;
}
.carousel .macbook { flex: 1; }
.carousel__track { display: flex; list-style: none; transition: transform .5s var(--ease); }
.carousel__slide { min-width: 100%; }
.carousel__slide img { width: 100%; height: auto; display: block; }
.carousel__caption {
  text-align: center; color: var(--ink-soft); font-size: 15px;
  margin: 30px auto 0; min-height: 1.2em;
}
.carousel__arrow {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: rgba(28,28,36,.7); backdrop-filter: blur(12px);
  border: 1px solid var(--line); color: var(--ink);
  font-size: 24px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.4); transition: transform .2s, background .2s, border-color .2s;
}
.carousel__arrow:hover { transform: scale(1.08); background: rgba(40,40,52,.9); border-color: rgba(255,255,255,.25); }
.carousel__dots { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.carousel__dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,.12));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
  transition: all .3s var(--ease);
}
.carousel__dots button:hover { background: linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,.22)); }
.carousel__dots button.active {
  width: 28px; border-radius: 4px;
  background: linear-gradient(180deg, #f2f2f5 0%, #c8c9cf 45%, #9a9ba3 100%);
  box-shadow:
    0 1px 3px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 -1px 1px rgba(0,0,0,.25);
}

/* ===================== STEPS ===================== */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 60px; }
.step { text-align: center; padding: 0 12px; }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%; margin-bottom: 22px;
  font-size: 24px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 30px rgba(10,132,255,.4), inset 0 1px 0 rgba(255,255,255,.3);
}
.step h3 { font-size: 22px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.step p { color: var(--ink-soft); font-size: 16px; }

/* ===================== SPECS ===================== */
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.specs .section__title { text-align: left; }
.specs__list { list-style: none; margin-top: 32px; }
.specs__list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line-soft);
}
.specs__list span { color: var(--ink-soft); }
.specs__list b { font-weight: 600; text-align: right; color: var(--ink); }
.specs__visual img { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: 0 30px 70px rgba(0,0,0,.6); }

/* ===================== CTA ===================== */
.cta {
  position: relative; overflow: hidden;
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(10,132,255,.25), transparent 70%),
    linear-gradient(135deg, #0c0c12, #14141f);
  color: #fff; text-align: center; padding: 120px 0;
  border-top: 1px solid var(--line-soft);
}
.cta h2 { font-size: clamp(30px,4.5vw,50px); font-weight: 700; letter-spacing: -.025em;
  background: linear-gradient(180deg,#fff,#c7c7d1); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cta p { color: var(--ink-soft); font-size: 20px; margin-top: 14px; }
.cta .btn { margin-top: 34px; }
.cta__note { font-size: 14px; margin-top: 16px; color: var(--ink-dim); }

/* ===================== FOOTER ===================== */
.footer { background: #060608; padding: 56px 0; font-size: 14px; border-top: 1px solid var(--line-soft); }
.footer__inner { display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center; }
.footer__brand { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); }
.footer__logo { width: 26px; border-radius: 6px; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer__links a { color: var(--ink-soft); }
.footer__links a:hover { color: var(--ink); }
.footer__copy { color: var(--ink-dim); }

/* ===================== CHECKOUT MODAL ===================== */
.checkout { position: fixed; inset: 0; z-index: 200; display: none; }
.checkout.open { display: block; }
.checkout__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(6px); }
.checkout__panel {
  position: relative; width: min(420px, 92vw); margin: 8vh auto 0; max-height: 84vh; overflow-y: auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 32px 28px; text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,.7);
  animation: checkoutIn .3s var(--ease);
}
@keyframes checkoutIn { from { opacity:0; transform: translateY(16px) scale(.98); } to { opacity:1; transform:none; } }
.checkout__close { position: absolute; top: 14px; right: 16px; background: none; border: none;
  color: var(--ink-soft); font-size: 26px; line-height: 1; cursor: pointer; }
.checkout__close:hover { color: var(--ink); }
.checkout__icon { width: 64px; height: 64px; border-radius: 15px; margin: 0 auto 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.checkout__head h3 { font-size: 22px; margin-bottom: 4px; color: var(--ink); }
.checkout__price { font-size: 34px; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
.checkout__sub { color: var(--ink-soft); font-size: 14px; margin: 4px 0 22px; }
/* PayPal buttons need a light surface — present it as a clean payment card */
.checkout__pay {
  background: #fff; border-radius: 16px;
  padding: 18px 16px 10px; margin-top: 6px; min-height: 56px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.25);
}
#paypal-buttons { min-height: 46px; }
.checkout__note { color: var(--ink-dim); font-size: 12px; margin-top: 16px; }
.checkout__success { text-align: center; }
.checkout__check { width: 56px; height: 56px; line-height: 56px; margin: 0 auto 12px; border-radius: 50%;
  background: rgba(48,209,88,.15); color: var(--green); font-size: 30px; }
.checkout__success h3 { font-size: 20px; margin-bottom: 8px; color: var(--ink); }
.checkout__success p { color: var(--ink-soft); font-size: 14px; margin: 8px 0; line-height: 1.5; }
.checkout__spam { background: rgba(255,159,10,.12); border: 1px solid rgba(255,159,10,.35);
  color: #ffb340 !important; border-radius: 12px; padding: 12px 14px; }
.checkout__muted { color: var(--ink-dim) !important; font-size: 13px; }
.checkout__dlhint { color: var(--ink-soft) !important; font-size: 13px; margin-top: 10px !important; }
.checkout__dlbtn { margin: 6px auto 2px; }

/* ===================== DOWNLOAD PAGE ===================== */
.dl { min-height: calc(100vh - 58px - 200px); display: flex; align-items: center; justify-content: center; padding: 60px 24px; }
.dl__card { width: min(480px, 100%); text-align: center; }
.dl__icon { width: 88px; height: 88px; border-radius: 20px; margin: 0 auto 22px;
  filter: drop-shadow(0 16px 34px rgba(0,0,0,.5)) drop-shadow(0 0 40px rgba(10,132,255,.3)); }
.dl__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold), #f0dcae); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.dl__title { font-size: 27px; font-weight: 700; letter-spacing: -.02em; margin: 10px 0 6px; color: var(--ink); }
.dl__sub { color: var(--ink-soft); font-size: 15px; margin-bottom: 28px; }
.dl__meta { color: var(--ink-dim); font-size: 13px; margin-top: 14px; }
.dl__steps { text-align: left; margin-top: 32px; border-top: 1px solid var(--line-soft); padding-top: 26px; }
.dl__stepstitle { font-size: 15px; font-weight: 600; margin-bottom: 16px; text-align: center; color: var(--ink); }
.dl__step { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.dl__num { flex: 0 0 26px; height: 26px; border-radius: 50%; background: rgba(10,132,255,.16);
  color: var(--blue); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.dl__step p { color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.dl__step b { color: var(--ink); font-weight: 600; }
.dl__keynote { margin-top: 24px; background: rgba(216,184,120,.1); border: 1px solid rgba(216,184,120,.3);
  border-radius: 12px; padding: 12px 14px; font-size: 13px; line-height: 1.5; color: #ddc38c; }

/* ===================== LEGAL / IMPRESSUM ===================== */
.legal { max-width: 720px; margin: 0 auto; padding: 64px 24px 90px; }
.legal__back { display: inline-block; color: var(--ink-soft); font-size: 14px; margin-bottom: 28px; transition: color .2s; }
.legal__back:hover { color: var(--ink); }
.legal__title { font-size: clamp(30px,5vw,44px); font-weight: 700; letter-spacing: -.025em; margin-bottom: 32px;
  background: linear-gradient(180deg,#fff,#b9b9c4); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.legal__block { padding: 24px 0; border-top: 1px solid var(--line-soft); }
.legal__block:first-of-type { border-top: 0; padding-top: 0; }
.legal__block h2 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 10px; letter-spacing: -.01em; }
.legal__block p { color: var(--ink-soft); font-size: 15px; line-height: 1.75; }
.legal__block a { color: var(--blue); word-break: break-word; }
.legal__block ul { margin: 10px 0 0; padding-left: 20px; color: var(--ink-soft); font-size: 15px; line-height: 1.8; }
.legal__block li { margin-bottom: 5px; }
.legal__block li b { color: var(--ink); font-weight: 600; }
.legal__updated { margin-top: 36px; color: var(--ink-dim); font-size: 13px; }

/* ===================== REVEAL ANIMATION ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 58px; left: 0; right: 0;
    background: rgba(12,12,16,.96); backdrop-filter: blur(22px);
    padding: 12px 24px; border-bottom: 1px solid var(--line);
  }
  .nav__links.open a { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .nav__burger { display: flex; }
  .features, .steps { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2,1fr); gap: 36px; }
  .specs { grid-template-columns: 1fr; }
  .specs .section__title { text-align: center; }
  .section { padding: 80px 0; }
  .carousel__arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===================== FAQ ===================== */
.faq { max-width: 820px; margin: 56px auto 0; display: grid; gap: 14px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.faq__item:hover { border-color: var(--line); background: var(--surface-2); }
.faq__q { font-size: 18px; font-weight: 650; letter-spacing: -.01em; color: var(--ink); margin: 0; }
.faq__a { margin: 10px 0 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; }
@media (max-width: 600px) {
  .faq__item { padding: 20px 20px; }
  .faq__q { font-size: 16.5px; }
}

/* ===================== COOKIE / DATENSCHUTZ-HINWEIS ===================== */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1200;
  max-width: 660px; margin: 0 auto;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: space-between;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 16px;
  padding: 15px 20px; box-shadow: 0 18px 50px rgba(0,0,0,.5);
  opacity: 0; transform: translateY(14px); transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.cookie.show { opacity: 1; transform: none; }
.cookie__text { margin: 0; font-size: 13px; line-height: 1.55; color: var(--ink-soft); flex: 1 1 320px; }
.cookie__actions { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.cookie__more { font-size: 13px; color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.cookie__more:hover { color: var(--ink); }
.cookie__btn {
  border: 0; cursor: pointer; white-space: nowrap; background: var(--ink); color: #0a0a0c;
  font-family: var(--font); font-size: 13.5px; font-weight: 600; padding: 9px 22px; border-radius: 980px;
  transition: opacity .2s var(--ease);
}
.cookie__btn:hover { opacity: .85; }
@media (max-width: 520px) {
  .cookie { flex-direction: column; align-items: stretch; gap: 12px; text-align: center; }
  .cookie__actions { justify-content: center; }
}

/* ===================== FEATURE-SHOWCASE ===================== */
.showcase__heading { text-align: center; font-size: clamp(24px,3.2vw,34px); font-weight: 700; letter-spacing: -.02em; margin: 96px 0 0; }
.showcase { display: grid; gap: 72px; margin-top: 56px; }
.showcase__row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); align-items: center; }
.showcase__row:nth-child(even) .showcase__media { order: 2; }
.showcase__media {
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.showcase__media img { display: block; width: 100%; height: auto; border-radius: 14px; }
.showcase__text h3 { font-size: clamp(20px,2.4vw,27px); font-weight: 650; letter-spacing: -.02em; margin: 0 0 12px; }
.showcase__text p { color: var(--ink-soft); font-size: clamp(15px,1.6vw,17px); line-height: 1.6; margin: 0; }
@media (max-width: 820px) {
  .showcase { gap: 48px; }
  .showcase__row { grid-template-columns: 1fr; gap: 20px; }
  .showcase__row:nth-child(even) .showcase__media { order: 0; }
  .showcase__heading { margin-top: 72px; }
}
