/* ============================================================
   ACETIME — styles.css
   ------------------------------------------------------------
   Diese Datei steuert das gesamte Erscheinungsbild der Website.

   Ziele:
   1) ruhiger, moderner Premium-Look
   2) Hauptfarben: Blau + Grün
   3) starke Responsiveness
   4) klares Branding mit Ace-Logo
   5) weiche Hover- und Bewegungs-Effekte
   6) Screen-Strip bleibt elegant und interaktiv
============================================================ */


/* ============================================================
   1. DESIGN-TOKENS / CSS-VARIABLEN
============================================================ */

:root,
[data-theme="light"] {
  --bg:            #f4f6f8;
  --bg2:           #eaf3f7;
  --card:          #ffffff;
  --card-soft:     #f8fbfd;
  --text:          #0f172a;
  --muted:         #64748b;
  --line:          rgba(15, 23, 42, 0.10);

  --blue:          #89ccef;
  --blue-strong:   #4ea9db;
  --blue-soft:     #dff3fc;

  --green:         #b7e47a;
  --green-strong:  #2f7a4e;
  --green-soft:    #edf8dd;

  --lilac:         #d8ccff;
  --peach:         #ffd9c7;
  --danger-soft:   #ffe0da;

  --accent:        var(--green-strong);
  --accent-2:      var(--blue-strong);

  --shadow-sm:     0 8px 22px rgba(15, 23, 42, 0.06);
  --shadow-md:     0 18px 50px rgba(15, 23, 42, 0.10);
  --shadow-lg:     0 30px 90px rgba(15, 23, 42, 0.16);

  --radius-xs:     10px;
  --radius-sm:     14px;
  --radius-md:     18px;
  --radius-lg:     24px;
  --radius-xl:     30px;

  --max:           1180px;

  --nav-active-bg: rgba(183, 228, 122, 0.34);
  --nav-active-border: rgba(47, 122, 78, 0.14);
}

[data-theme="dark"] {
  --bg:            #0d1520;
  --bg2:           #132133;
  --card:          #162233;
  --card-soft:     #1b2a3d;
  --text:          #edf4ff;
  --muted:         #b4c1d4;
  --line:          rgba(255, 255, 255, 0.10);

  --blue:          #89ccef;
  --blue-strong:   #67b7e3;
  --blue-soft:     rgba(137, 204, 239, 0.14);

  --green:         #b7e47a;
  --green-strong:  #9dd85e;
  --green-soft:    rgba(183, 228, 122, 0.14);

  --lilac:         #bfaeff;
  --peach:         #f8cdbd;
  --danger-soft:   rgba(255, 120, 90, 0.16);

  --accent:        var(--green);
  --accent-2:      var(--blue);

  --shadow-sm:     0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-md:     0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-lg:     0 30px 90px rgba(0, 0, 0, 0.45);

  --nav-active-bg: rgba(183, 228, 122, 0.12);
  --nav-active-border: rgba(183, 228, 122, 0.18);
}


/* ============================================================
   2. RESET & BASIS
============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(900px 600px at 7% 20%, rgba(137, 204, 239, 0.28), transparent 58%),
    radial-gradient(820px 620px at 92% 18%, rgba(183, 228, 122, 0.22), transparent 54%),
    linear-gradient(180deg, #f8fafc 0%, var(--bg) 100%);
  transition: background-color .25s ease, color .25s ease;
}

[data-theme="dark"] body {
  background:
    radial-gradient(900px 600px at 7% 20%, rgba(137, 204, 239, 0.14), transparent 58%),
    radial-gradient(820px 620px at 92% 18%, rgba(183, 228, 122, 0.12), transparent 54%),
    linear-gradient(180deg, #0b1119 0%, var(--bg) 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a:hover,
button:hover {
  transition:
    opacity .25s ease,
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    filter .25s ease;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(78, 169, 219, 0.45);
  outline-offset: 3px;
  border-radius: 14px;
}

section[id] {
  scroll-margin-top: 92px;
}


/* ============================================================
   3. TYPOGRAFIE
============================================================ */

h1,
h2,
h3,
.brand-text,
.hero-slogan,
.section-kicker,
.top-badge,
.btn,
.nav-menu a {
  font-family: "Sora", "DM Sans", system-ui, sans-serif;
}

h1 {
  margin: 0 0 .7rem;
  font-size: clamp(2.45rem, 5vw, 5rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.045em;
}

h2 {
  margin: 0 0 .55rem;
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h3 {
  margin: 0 0 .35rem;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 60ch;
}

.lead-light {
  color: rgba(255, 255, 255, 0.78);
}

[data-theme="light"] .lead-light {
  color: var(--muted);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .7rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.section-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-2), transparent);
}

.section-kicker--light {
  color: var(--green);
}

.section-kicker--light::before {
  background: linear-gradient(90deg, var(--green), transparent);
}

.upper {
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .12em;
}

.small {
  font-size: .92rem;
}

.muted {
  color: var(--muted);
}

.center {
  text-align: center;
}

.underline {
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ============================================================
   4. UTILITIES
============================================================ */

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: .7rem .95rem;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  left: 10px;
}

.tag-row,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .36rem .72rem;
  border-radius: 999px;
  border: 1px solid rgba(47, 122, 78, 0.10);
  background: var(--green-soft);
  color: var(--green-strong);
  font-size: .84rem;
  font-weight: 700;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .34rem .72rem;
  border-radius: 999px;
  border: 1px solid rgba(47, 122, 78, 0.10);
  background: linear-gradient(180deg, #eff8e1 0%, #e3f0cd 100%);
  color: #142f1f;
  font-size: .82rem;
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 1.5rem;
  align-items: start;
}

.checklist,
.bullets {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .7rem;
}

.checklist li,
.bullets li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
}

.checklist li::before {
  content: "✓";
  flex-shrink: 0;
  color: var(--green-strong);
  font-weight: 900;
  margin-top: .05rem;
}

.bullets li::before {
  content: "•";
  flex-shrink: 0;
  color: var(--blue-strong);
  font-weight: 900;
  margin-top: .02rem;
}

.steps {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: .7rem;
}

.steps-light,
.steps-light li {
  color: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .steps-light,
[data-theme="light"] .steps-light li {
  color: var(--text);
}


/* ============================================================
   5. TOP BANNER + HEADER + NAVIGATION
============================================================ */

.top-banner {
  background: linear-gradient(90deg, rgba(183, 228, 122, 0.18), rgba(137, 204, 239, 0.18));
  border-bottom: 1px solid var(--line);
  padding: .55rem 0;
}

.top-banner__inner {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
  font-size: .92rem;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: .28rem .72rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #d9efb6 0%, #cbe59e 100%);
  color: #1b2f1f;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .03em;
  box-shadow: inset 0 0 0 1px rgba(47, 122, 78, 0.08);
}

.top-text {
  color: color-mix(in srgb, var(--text) 75%, white 25%);
  font-weight: 700;
}

.top-link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: .38rem .95rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #d7eef9 0%, #c4e5f5 100%);
  border: 1px solid rgba(78, 169, 219, 0.16);
  color: #173847;
  font-weight: 800;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.top-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(78, 169, 219, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

[data-theme="dark"] .site-header {
  background: rgba(11, 17, 25, 0.76);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
  font-weight: 800;
  min-width: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 12px;
  transition: transform .35s ease, filter .35s ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px) scale(1.03);
  filter: drop-shadow(0 8px 14px rgba(78, 169, 219, 0.14));
}

.brand-text {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .24rem;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .6rem .88rem;
  border-radius: 16px;
  border: 1px solid transparent;
  color: #44546f;
  font-size: .94rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}

[data-theme="dark"] .nav-menu a {
  color: var(--muted);
}

.nav-menu a:hover {
  background: rgba(137, 204, 239, 0.08);
  color: var(--text);
  transform: translateY(-1px);
}

.nav-menu a.active {
  background: linear-gradient(180deg, rgba(183, 228, 122, 0.42), rgba(183, 228, 122, 0.30));
  border-color: var(--nav-active-border);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(47, 122, 78, 0.04);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

[data-theme="dark"] .nav-toggle {
  background: rgba(22, 34, 51, 0.92);
}

.nav-toggle-lines {
  display: block;
  width: 22px;
  height: 14px;
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .22s ease;
}

.nav-toggle-lines::before {
  top: 2px;
}

.nav-toggle-lines::after {
  bottom: 2px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-4px) rotate(-45deg);
}


/* ============================================================
   6. BUTTONS
============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: .92rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(47, 122, 78, 0.10);
  background: linear-gradient(180deg, #cbe89e 0%, #b7e47a 100%);
  color: #0e2f21;
  font-size: .97rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 10px 26px rgba(102, 153, 51, 0.14);
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease, background .35s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(102, 153, 51, 0.16);
  filter: saturate(1.02);
}

.btn:active {
  transform: translateY(0);
}

.btn-small {
  min-height: 42px;
  padding: .56rem .95rem;
  border-radius: 15px;
  font-size: .9rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

[data-theme="dark"] .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  background: linear-gradient(180deg, #bfe788 0%, #a8dc63 100%);
  color: #163420;
}


/* ============================================================
   7. SECTIONS & GENERELLE LAYOUT-BEREICHE
============================================================ */

.section {
  padding: 4.8rem 0;
}

.section-light {
  background: transparent;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(214, 239, 247, 0.55) 0%, rgba(232, 246, 236, 0.50) 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

[data-theme="dark"] .section-dark {
  background: linear-gradient(180deg, rgba(19, 33, 51, 0.98) 0%, rgba(17, 35, 37, 0.96) 100%);
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.2rem;
}

.section-head h2 {
  margin-top: .2rem;
}

.statement-band {
  padding: 2.35rem 0;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  background: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

[data-theme="dark"] .statement-band {
  background: rgba(255,255,255,.02);
}

.statement-band__text {
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  max-width: 820px;
}


/* ============================================================
   8. HERO
============================================================ */

.hero-premium {
  position: relative;
  overflow: hidden;
  padding: 5.4rem 0 3.2rem;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.hero-bg-shape--1 {
  width: 900px;
  height: 700px;
  top: -140px;
  left: -300px;
  background: radial-gradient(circle, rgba(137, 204, 239, 0.34), transparent 63%);
}

.hero-bg-shape--2 {
  width: 860px;
  height: 700px;
  top: -160px;
  right: -280px;
  background: radial-gradient(circle, rgba(183, 228, 122, 0.28), transparent 62%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.hero-logo {
  width: min(100%, 440px);
  height: auto;
  object-fit: contain;
}

.hero-slogan {
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-lead {
  margin: 0 0 1.45rem;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 1.9rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.hero-proof__item {
  min-width: 118px;
  padding: .9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

[data-theme="dark"] .hero-proof__item {
  background: rgba(255,255,255,.04);
}

.hero-proof__num {
  display: block;
  font-family: "Sora", "DM Sans", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: .3rem;
}

.hero-proof__label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
}

.hero-memory-card {
  border-left: 4px solid rgba(183, 228, 122, 0.85);
}

.device-shell {
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

[data-theme="dark"] .device-shell {
  background: rgba(22, 34, 51, 0.92);
}

.device-top {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .85rem 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
}

[data-theme="dark"] .dot {
  background: rgba(255,255,255,.22);
}

.device-title {
  margin-left: auto;
  font-size: .82rem;
  font-weight: 700;
  color: #5b6d87;
  text-align: right;
}

.device-body {
  display: grid;
  gap: 1rem;
  padding: .95rem;
}

.device-card {
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.52);
  padding: 1rem;
}

[data-theme="dark"] .device-card {
  background: rgba(255,255,255,.03);
}

.device-card.primary {
  background:
    linear-gradient(90deg, rgba(137, 204, 239, 0.10), rgba(183, 228, 122, 0.09));
}

.device-card h3 {
  margin-top: .15rem;
  margin-bottom: .65rem;
}

.device-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.bars {
  display: flex;
  gap: .35rem;
  margin-top: .75rem;
}

.bars span {
  height: 8px;
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.bars span:nth-child(2) { opacity: .85; }
.bars span:nth-child(3) { opacity: .65; }
.bars span:nth-child(4) { opacity: .45; }
.bars span:nth-child(5) { opacity: .28; }

.floating-card {
  position: absolute;
  left: -26px;
  bottom: 8px;
  padding: .9rem 1rem;
  border-radius: 18px;
  background: #23314e;
  color: #fff;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow-md);
  max-width: 220px;
}

.floating-card strong {
  display: block;
  line-height: 1.2;
}

.floating-kicker {
  display: inline-block;
  margin-bottom: .35rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #d3e7ff;
}


/* ============================================================
   9. KARTEN / WHY / HIGHLIGHT-PANELS
============================================================ */

.card {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .card {
  background: rgba(255,255,255,.03);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.editorial-card {
  position: relative;
  padding: 1.45rem;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  min-width: 0;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

[data-theme="dark"] .editorial-card {
  background: rgba(255,255,255,.03);
}

.editorial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.editorial-card__nr {
  display: block;
  margin-bottom: .8rem;
  font-family: "Sora", "DM Sans", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: color-mix(in srgb, var(--accent-2) 65%, white 35%);
  opacity: .9;
}

.highlight-panel {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.4rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.65rem;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(248, 251, 253, 0.86));
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .highlight-panel {
  background: rgba(255,255,255,.03);
}

.highlight-panel__copy {
  min-width: 0;
}

.highlight-panel__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}

.metric-box {
  padding: .95rem .6rem;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.76);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.metric-box:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

[data-theme="dark"] .metric-box {
  background: rgba(255,255,255,.03);
}

.metric-box__value {
  display: block;
  margin-bottom: .28rem;
  font-family: "Sora", "DM Sans", system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--green-strong);
}

.metric-box__label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
}


/* ============================================================
   10. SOLUTION / SPLIT-SHOWCASE
============================================================ */

.split-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.split-showcase__visual,
.split-showcase__content {
  min-width: 0;
}

.showcase-plate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.showcase-mini {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  min-width: 0;
  transition: transform .35s ease, box-shadow .35s ease;
}

.showcase-mini:hover {
  transform: translateY(-1px);
}

[data-theme="light"] .showcase-mini {
  border-color: rgba(15, 23, 42, 0.06);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-sm);
}

.showcase-mini--full,
.showcase-mini:nth-child(5) {
  grid-column: span 2;
}

.showcase-mini__label {
  display: block;
  margin-bottom: .35rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-strong);
}

.showcase-mini strong {
  font-size: .96rem;
  font-weight: 800;
  line-height: 1.25;
  color: rgba(255,255,255,.92);
}

[data-theme="light"] .showcase-mini strong {
  color: var(--text);
}


/* ============================================================
   11. FEATURES
============================================================ */

.feature-grid-advanced {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-panel {
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  min-width: 0;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

[data-theme="dark"] .feature-panel {
  background: rgba(255,255,255,.03);
}

.feature-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.feature-panel--large {
  grid-column: span 2;
}

.feature-panel__top {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .65rem;
}

.feature-ico {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(137, 204, 239, 0.18), rgba(183, 228, 122, 0.18));
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 1.12rem;
  flex-shrink: 0;
}


/* ============================================================
   12. SCREENS / HORIZONTALE SCREEN-GALERIE
============================================================ */

.carousel-section {
  overflow: hidden;
}

.screens-strip-wrap {
  width: 100%;
  margin-top: 2.5rem;
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.screens-strip-label {
  margin: 0 0 1rem;
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .82;
}

.screens-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: grab;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.screens-marquee.is-dragging {
  cursor: grabbing;
}

.screens-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  width: max-content;
  will-change: transform;
  padding-inline: .25rem;
  user-select: none;
}

.screen-card {
  flex-shrink: 0;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform .45s ease, box-shadow .45s ease, filter .45s ease, border-color .45s ease;
}

[data-theme="dark"] .screen-card {
  background: rgba(22,34,51,.92);
}

.screen-card:hover {
  transform: translateY(-2px) scale(1.006);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.10);
  filter: saturate(1.01);
}

.screen-card.app {
  width: 190px;
}

.screen-card.app img {
  width: 190px;
  height: 338px;
  object-fit: cover;
  pointer-events: none;
}

.screen-card.wide {
  width: 470px;
}

.screen-card.wide img {
  width: 470px;
  height: 290px;
  object-fit: cover;
  pointer-events: none;
}

.screen-card__label {
  display: block;
  padding: .72rem .9rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  font-size: .84rem;
  font-weight: 700;
  color: var(--muted);
}


/* ============================================================
   13. SCREEN-VIEWER / LIGHTBOX / FLIP-CARD
============================================================ */

.screen-viewer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.screen-viewer.open {
  opacity: 1;
  pointer-events: auto;
}

.screen-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.screen-viewer__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(760px, 96vw);
}

.screen-viewer__close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--text);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.flip-preview {
  perspective: 1200px;
  cursor: pointer;
}

.flip-preview__inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}

.flip-preview.flipped .flip-preview__inner {
  transform: rotateY(180deg);
}

.flip-preview__side {
  min-height: 360px;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-lg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

[data-theme="dark"] .flip-preview__side {
  background: rgba(22,34,51,.97);
}

.flip-preview__front {
  position: relative;
}

.flip-preview__back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  transform: rotateY(180deg);
}

.flip-preview__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 220px at 20% 0%, rgba(137, 204, 239, 0.14), transparent 60%),
    radial-gradient(450px 240px at 90% 100%, rgba(183, 228, 122, 0.12), transparent 62%);
  pointer-events: none;
}

.flip-preview__top,
.flip-preview__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
}

.flip-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 34px;
  padding: .3rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255,255,255,.72);
  color: var(--green-strong);
  font-size: .82rem;
  font-weight: 800;
}

[data-theme="dark"] .flip-badge {
  background: rgba(255,255,255,.05);
}

.flip-preview__media-wrap {
  position: relative;
  z-index: 1;
  padding: 0 1.15rem;
}

.flip-preview__image {
  width: 100%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(245, 248, 252, 0.7);
}

.flip-preview__title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
}

.flip-preview__hint {
  margin: 0;
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
}

.flip-preview__note {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .75rem;
}

.flip-preview__text {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}


/* ============================================================
   14. STACK / TECHNIK
============================================================ */

.stack-showcase {
  display: grid;
  gap: 2rem;
}

.stack-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stack-tile {
  padding: 1.3rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  min-width: 0;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

[data-theme="light"] .stack-tile {
  border-color: rgba(15, 23, 42, 0.06);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
}

.stack-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.stack-tile__label {
  display: block;
  margin-bottom: .45rem;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-strong);
}

.stack-tile strong {
  display: block;
  margin-bottom: .35rem;
}

.stack-tile p {
  color: rgba(255,255,255,.66);
  font-size: .92rem;
}

[data-theme="light"] .stack-tile p {
  color: var(--muted);
}


/* ============================================================
   15. TEAM
============================================================ */

.team-editorial {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.team-card {
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
  min-width: 0;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

[data-theme="dark"] .team-card {
  background: rgba(255,255,255,.03);
}

.team-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: .75rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(135deg, rgba(137, 204, 239, 0.20), rgba(183, 228, 122, 0.22));
  font-size: 1.12rem;
  font-weight: 900;
}


/* ============================================================
   16. FAQ
============================================================ */

.faq-section {
  background: transparent;
}

.faq {
  display: grid;
  gap: .8rem;
  max-width: 780px;
}

.faq-layout {
  align-items: stretch;
}

.faq-visual {
  display: grid;
  place-items: center;
  min-height: 100%;
  overflow: hidden;
}

.faq-visual__image {
  width: min(100%, 340px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(78, 169, 219, 0.10));
}

details {
  padding: .95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}

[data-theme="dark"] details {
  background: rgba(255,255,255,.03);
}

details:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.06);
}

details[open] {
  background: rgba(255,255,255,.95);
}

[data-theme="dark"] details[open] {
  background: rgba(255,255,255,.05);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--muted);
}

details[open] summary::after {
  content: "−";
}

details p {
  margin-top: .75rem;
  color: var(--muted);
}


/* ============================================================
   17. STATUS + CTA
============================================================ */

.status-layout {
  display: grid;
  grid-template-columns: 1.14fr .86fr;
  gap: 1.4rem;
  align-items: start;
}

.status-box {
  padding: 1.55rem;
  border-radius: 26px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

[data-theme="dark"] .status-box {
  background: rgba(255,255,255,.03);
}

.status-box--accent {
  background:
    linear-gradient(135deg, rgba(183, 228, 122, 0.18), rgba(137, 204, 239, 0.16));
  border-color: rgba(47, 122, 78, 0.08);
}

.cta {
  padding: 4.8rem 0;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.22fr .78fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.9rem;
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background:
    linear-gradient(135deg, rgba(255,255,255,.90), rgba(248, 251, 253, .92));
  box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .cta-box {
  background: rgba(22,34,51,.92);
}

.cta-copy {
  min-width: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1rem;
}

.qr {
  display: grid;
  place-items: center;
}

.qr-shell {
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .qr-shell {
  background: rgba(255,255,255,.04);
}

.qr-box {
  width: 172px;
  height: 172px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(90deg, rgba(137,204,239,.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(183,228,122,.14) 1px, transparent 1px),
    #fff;
  background-size: 14px 14px;
}

[data-theme="dark"] .qr-box {
  background:
    linear-gradient(90deg, rgba(137,204,239,.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(183,228,122,.14) 1px, transparent 1px),
    rgba(255,255,255,.02);
}


/* ============================================================
   18. FOOTER
============================================================ */

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255,255,255,.36);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

[data-theme="dark"] .site-footer {
  background: rgba(255,255,255,.02);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  margin: 0 0 .25rem;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .65rem;
  color: var(--muted);
}

.footer-links a {
  padding: .38rem .62rem;
  border-radius: 12px;
  font-size: .92rem;
  font-weight: 700;
}

.footer-links a:hover {
  background: rgba(137, 204, 239, 0.10);
  color: var(--text);
}

.footer-links a[aria-current="page"] {
  background: rgba(183, 228, 122, 0.22);
  color: var(--text);
  border: 1px solid rgba(47, 122, 78, 0.10);
}


/* ============================================================
   19. THEME-TOGGLE
============================================================ */

.theme-toggle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .theme-toggle {
  background: rgba(22,34,51,.92);
}

.theme-toggle .icon-sun {
  display: none;
}

.theme-toggle .icon-moon {
  display: inline;
}

[data-theme="light"] .theme-toggle .icon-sun {
  display: inline;
}

[data-theme="light"] .theme-toggle .icon-moon {
  display: none;
}


/* ============================================================
   20. REVEAL + TO-TOP
============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: rgba(255,255,255,.90);
  color: var(--text);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}

[data-theme="dark"] .to-top {
  background: rgba(22,34,51,.96);
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


/* ============================================================
   21. RESPONSIVE LAYOUT
============================================================ */

@media (max-width: 1100px) {
  .hero-grid,
  .split-showcase__grid,
  .cta-box,
  .status-layout,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-stage {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }

  .stack-showcase__grid,
  .team-editorial {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-panel {
    grid-template-columns: 1fr;
  }

  .feature-grid-advanced {
    grid-template-columns: 1fr;
  }

  .feature-panel--large {
    grid-column: span 1;
  }

  .cta-copy {
    text-align: left;
  }

  .qr {
    justify-content: start;
  }

  .faq-visual {
    min-height: 280px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(var(--max), calc(100% - 1.6rem));
  }

  .editorial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stack-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-premium {
    padding: 4.6rem 0 2.8rem;
  }

  .hero-grid {
    gap: 2.1rem;
  }

  .hero-copy {
    text-align: center;
    margin-inline: auto;
  }

  .hero-logo-wrap {
    align-items: center;
  }

  .hero-logo {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
  }

  .hero-stage {
    margin-top: .5rem;
  }

  .floating-card {
    left: 0;
    bottom: -18px;
  }

  .statement-band__text,
  .section-head {
    max-width: 100%;
  }

  .section-head {
    text-align: center;
    margin-inline: auto;
  }

  .faq {
    max-width: 100%;
  }

  .cta-copy {
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .qr {
    justify-content: center;
  }

  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 82px;
  }

  section[id] {
    scroll-margin-top: 82px;
  }

  .top-banner {
    display: none;
  }

  .site-header {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .nav {
    padding: .75rem 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + .55rem);
    right: 0;
    width: min(420px, calc(100vw - 1.6rem));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    padding: .8rem;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow-lg);
  }

  [data-theme="dark"] .nav-menu {
    background: rgba(22,34,51,.96);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    justify-content: flex-start;
    min-height: 48px;
    padding: .78rem .9rem;
  }

  .nav-cta {
    justify-content: center !important;
    margin-top: .2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-premium {
    padding: 3.8rem 0 2.35rem;
  }

  .hero-grid {
    gap: 1.8rem;
  }

  .hero-logo-wrap {
    gap: .85rem;
    align-items: center;
  }

  .hero-logo {
    width: min(100%, 320px);
  }

  .hero-slogan {
    text-align: center;
  }

  .hero-proof {
    gap: .7rem;
  }

  .hero-proof__item {
    min-width: calc(50% - .35rem);
  }

  .device-shell {
    border-radius: 24px;
  }

  .device-stack,
  .highlight-panel__metrics,
  .showcase-plate,
  .editorial-grid,
  .stack-showcase__grid,
  .team-editorial {
    grid-template-columns: 1fr;
  }

  .showcase-mini--full,
  .showcase-mini:nth-child(5) {
    grid-column: span 1;
  }

  .screen-card.app {
    width: 154px;
  }

  .screen-card.app img {
    width: 154px;
    height: 274px;
  }

  .screen-card.wide {
    width: 340px;
  }

  .screen-card.wide img {
    width: 340px;
    height: 210px;
  }

  .screen-viewer {
    padding: 1rem;
  }

  .screen-viewer__close {
    top: -10px;
    right: -4px;
  }

  .flip-preview__side,
  .flip-preview__back {
    min-height: 320px;
    border-radius: 24px;
  }

  .flip-preview__media-wrap {
    padding: 0 .85rem;
  }

  .flip-preview__top,
  .flip-preview__bottom {
    padding: .85rem .95rem;
  }

  .flip-preview__text {
    font-size: .96rem;
    line-height: 1.6;
  }

  .cta-box {
    padding: 1.4rem;
  }

  .qr-box {
    width: 150px;
    height: 150px;
  }

  .floating-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: .9rem;
    max-width: none;
    width: 100%;
    text-align: center;
  }

  .statement-band__text {
    text-align: center;
  }

  .status-box,
  .team-card,
  .feature-panel,
  .editorial-card,
  .highlight-panel {
    padding: 1.25rem;
  }

  .footer-links {
    gap: .45rem;
  }

  .faq-visual {
    display: none;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--max), calc(100% - 1.2rem));
  }

  h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  h3 {
    font-size: 1.02rem;
  }

  .lead {
    font-size: 1.02rem;
  }

  .brand-text {
    font-size: .98rem;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .btn,
  .btn-small {
    width: 100%;
  }

  .hero-proof__item {
    min-width: 100%;
  }

  .status-box,
  .team-card,
  .feature-panel,
  .editorial-card,
  .highlight-panel,
  .cta-box {
    border-radius: 22px;
  }

  .team-editorial {
    grid-template-columns: 1fr 1fr;
  }

  .avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .screen-card.wide {
    width: 280px;
  }

  .screen-card.wide img {
    width: 280px;
    height: 173px;
  }

  .screen-card__label {
    padding: .65rem .8rem;
    font-size: .82rem;
  }

  .flip-preview__title {
    font-size: 1rem;
  }

  .flip-preview__hint {
    font-size: .76rem;
  }

  .metric-box {
    padding: .85rem .5rem;
  }

  .metric-box__value {
    font-size: 1.35rem;
  }

  .top-link,
  .top-badge {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .container {
    width: calc(100% - 1rem);
  }

  .nav-menu {
    width: calc(100vw - 1rem);
    right: 0;
  }

  .hero-premium {
    padding-top: 3.2rem;
  }

  .hero-logo {
    width: min(100%, 270px);
  }

  .device-top,
  .device-body,
  .device-card,
  .status-box,
  .feature-panel,
  .team-card,
  .editorial-card,
  .highlight-panel,
  .cta-box {
    padding-left: .95rem;
    padding-right: .95rem;
  }

  .screen-card.app {
    width: 136px;
  }

  .screen-card.app img {
    width: 136px;
    height: 242px;
  }

  .screen-card.wide {
    width: 244px;
  }

  .screen-card.wide img {
    width: 244px;
    height: 151px;
  }

  .team-editorial {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    width: 100%;
  }

  .footer-links a {
    width: 100%;
    text-align: center;
  }
}


/* ============================================================
   22. REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .flip-preview__inner,
  .screen-card,
  .btn,
  .team-card,
  .feature-panel,
  .editorial-card,
  .stack-tile,
  .brand-logo,
  .metric-box,
  details,
  .top-link,
  .nav-menu a {
    transition: none !important;
  }
}

/* ============================================================
   31. BUSINESS CANVAS / PITCH PAGE
============================================================ */

.pitch-note {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .pitch-note {
  background: rgba(255, 255, 255, 0.04);
}

.pitch-note strong {
  display: block;
  margin-bottom: .2rem;
}

.bmc-stage {
  display: grid;
  gap: 1rem;
}

.bmc-stage__top {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1rem;
}

.bmc-stage__card,
.bmc-stage__usp {
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .bmc-stage__card,
[data-theme="dark"] .bmc-stage__usp {
  background: rgba(255, 255, 255, 0.04);
}

.bmc-stage__card h3,
.bmc-stage__usp h3 {
  margin-bottom: .55rem;
}

.bmc-stage__usp {
  background:
    linear-gradient(135deg, rgba(137, 204, 239, 0.18), rgba(183, 228, 122, 0.18)),
    rgba(255, 255, 255, 0.78);
}

[data-theme="dark"] .bmc-stage__usp {
  background:
    linear-gradient(135deg, rgba(137, 204, 239, 0.12), rgba(183, 228, 122, 0.12)),
    rgba(255, 255, 255, 0.04);
}

.bmc-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
}

.bmc-mini-card {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .bmc-mini-card {
  background: rgba(255,255,255,.03);
}

.bmc-mini-card strong {
  display: block;
  margin-bottom: .22rem;
  font-size: 1.15rem;
}

.split-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.25rem;
  align-items: start;
}

.split-panel__side {
  display: grid;
  gap: 1rem;
}

.bmc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.bmc-card {
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

[data-theme="dark"] .bmc-card {
  background: rgba(255,255,255,.04);
}

.bmc-card--wide {
  grid-column: span 2;
}

.bmc-card--full {
  grid-column: 1 / -1;
}

.bmc-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: .2rem .65rem;
  border-radius: 999px;
  margin-bottom: .85rem;
  background: rgba(137, 204, 239, 0.16);
  color: var(--accent-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.bmc-card__label--green {
  background: rgba(183, 228, 122, 0.18);
  color: var(--green-strong);
}

.bmc-card__label--peach {
  background: rgba(255, 217, 199, 0.3);
  color: #99593f;
}

.bmc-card p + .bullets,
.bmc-card p + .checklist {
  margin-top: .8rem;
}

.bmc-card .bullets,
.bmc-card .checklist {
  gap: .55rem;
}

.feedback-toolbar {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.feedback-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

.feedback-summary-card {
  padding: 1.15rem;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .feedback-summary-card {
  background: rgba(255,255,255,.04);
}

.feedback-summary-card strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: .25rem;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.35rem;
}

.feedback-card {
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .feedback-card {
  background: rgba(255,255,255,.04);
}

.feedback-card__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

.feedback-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: .25rem .75rem;
  border-radius: 999px;
  background: rgba(183, 228, 122, 0.18);
  color: var(--green-strong);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.feedback-form {
  display: grid;
  gap: .85rem;
}

.feedback-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
}

.feedback-field {
  display: grid;
  gap: .4rem;
}

.feedback-field label {
  font-weight: 700;
  font-size: .92rem;
}

.feedback-field input,
.feedback-field select,
.feedback-field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255,255,255,.92);
  color: var(--text);
  padding: .82rem .95rem;
  resize: vertical;
}

[data-theme="dark"] .feedback-field input,
[data-theme="dark"] .feedback-field select,
[data-theme="dark"] .feedback-field textarea {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
  color: var(--text);
}

.feedback-actions {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}

.feedback-status {
  min-height: 1.2rem;
  color: var(--green-strong);
  font-size: .88rem;
  font-weight: 700;
}

.feedback-list {
  display: grid;
  gap: .8rem;
  margin-top: 1rem;
}

.feedback-entry {
  padding: .95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(137, 204, 239, 0.08);
}

[data-theme="dark"] .feedback-entry {
  background: rgba(137, 204, 239, 0.10);
}

.feedback-entry__top {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  align-items: center;
  margin-bottom: .15rem;
}

.feedback-entry__meta {
  margin-bottom: .45rem;
  color: var(--muted);
  font-size: .88rem;
}

.feedback-empty {
  margin: 0;
  padding: .9rem 1rem;
  border-radius: 16px;
  border: 1px dashed rgba(15, 23, 42, 0.12);
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.role-card {
  padding: 1.35rem;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .role-card {
  background: rgba(255,255,255,.04);
}

.role-card__role {
  display: inline-block;
  margin-bottom: .8rem;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--accent-2);
}

@media (max-width: 1080px) {
  .bmc-grid,
  .feedback-summary,
  .role-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .split-panel,
  .bmc-stage__top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .bmc-mini-grid,
  .feedback-form__row,
  .feedback-grid,
  .bmc-grid,
  .feedback-summary,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .bmc-card--wide,
  .bmc-card--full {
    grid-column: auto;
  }

  .feedback-card__head,
  .feedback-actions {
    align-items: stretch;
  }

  .feedback-actions .btn {
    width: 100%;
  }
}


/* ============================================================
   19. KONTAKT + FEEDBACK SECTION
============================================================ */
.contact-section {
  padding-top: 4.5rem;
  padding-bottom: 5rem;
}

.contact-wrap {
  display: grid;
  gap: 1.5rem;
}

.contact-head {
  max-width: 760px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  padding: 1.4rem;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .contact-card {
  background: rgba(255,255,255,.04);
}

.contact-card__head {
  margin-bottom: 1rem;
}

.contact-card__head h3 {
  margin-top: .55rem;
  margin-bottom: .45rem;
}

.contact-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


/* HERO VIDEO */
.hero-video { display:flex; justify-content:center; align-items:center; }
.video-wrapper { position:relative; width:100%; max-width:520px; aspect-ratio:16/9; border-radius:20px; overflow:hidden; box-shadow:0 20px 60px rgba(0,0,0,0.08); background:#000; }
.video-wrapper iframe { width:100%; height:100%; border:none; }
.video-overlay { position:absolute; inset:0; display:flex; justify-content:center; align-items:center; background:rgba(0,0,0,0.4); cursor:pointer; z-index:2; }
.video-overlay img { position:absolute; width:100%; height:100%; object-fit:cover; }
.play-btn { position:relative; z-index:3; font-size:32px; background:white; border:none; border-radius:50%; padding:16px 20px; cursor:pointer; }


/* ============================================================
   FEINSCHLIFF: SCREEN-FEEDBACK + STERNE
   ------------------------------------------------------------
   - Button im Flip-Viewer für direktes Screen-Feedback
   - Sternebewertung statt Select-Dropdown
============================================================ */

.flip-preview__actions {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem 0.25rem;
}

.flip-preview__actions .btn {
  width: 100%;
  justify-content: center;
}

.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: .2rem;
}

.star-rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.star-rating label {
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  color: rgba(15, 23, 42, 0.16);
  transition: transform .2s ease, color .2s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #f5b301;
  transform: translateY(-1px);
}

.star-rating input:checked ~ label {
  color: #f5b301;
}

[data-theme="dark"] .star-rating label {
  color: rgba(255, 255, 255, 0.18);
}

[data-theme="dark"] .star-rating label:hover,
[data-theme="dark"] .star-rating label:hover ~ label,
[data-theme="dark"] .star-rating input:checked ~ label {
  color: #ffd25c;
}

@media (max-width: 760px) {
  .flip-preview__actions {
    padding: 0 1rem 0.2rem;
  }

  .flip-preview__actions .btn {
    width: 100%;
  }

  .star-rating label {
    font-size: 1.85rem;
  }
}

:root {
  --bg: #f4f6f8;
  --card: #ffffff;
  --text: #0f172a;
  --text-soft: #334155;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.08);
  --blue-strong: #4ea9db;
  --green: #b7e47a;
  --green-strong: #2f7a4e;
  --green-soft: #edf8dd;
  --shadow-xs: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 8px 22px rgba(15, 23, 42, 0.07);
  --shadow-md: 0 18px 50px rgba(15, 23, 42, 0.11);
  --shadow-lg: 0 30px 90px rgba(15, 23, 42, 0.16);
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --max: 1220px;
  --sidebar-w: 280px;
  --header-h: 64px;
}
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, li { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  color: var(--text);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.66;
  min-height: 100dvh;
  background:
    radial-gradient(900px 600px at 7% 20%, rgba(137, 204, 239, 0.26), transparent 58%),
    radial-gradient(820px 620px at 92% 18%, rgba(183, 228, 122, 0.22), transparent 54%),
    linear-gradient(180deg, #f8fafc 0%, var(--bg) 100%);
}
body.search-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
ul, ol { padding-left: 1.4rem; }
h1, h2, h3, h4,
.brand-text, .nav-menu a, .btn,
.eyebrow, .section-kicker,
.manual-sidebar__title, .manual-pagination__label {
  font-family: "Sora", "DM Sans", system-ui, sans-serif;
}
h1 { font-size: clamp(2.3rem, 4.8vw, 4.15rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.04em; }
h2 { font-size: clamp(1.55rem, 2.9vw, 2.25rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.04rem, 1.7vw, 1.2rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.container { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 10px; z-index: 9999; padding: 0.7rem 0.95rem; background: white; color: black; border-radius: 12px; }
.skip-link:focus { left: 10px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.muted { color: var(--muted); }
.small { font-size: 0.92rem; }
.lead { max-width: 62ch; color: var(--muted); font-size: 1.07rem; line-height: 1.78; }
.eyebrow, .section-kicker {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-strong); margin-bottom: 0.5rem;
}
.eyebrow::before, .section-kicker::before {
  content: ""; display: block; width: 24px; height: 2px; border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-strong), transparent); flex-shrink: 0;
}
.pill {
  display: inline-flex; align-items: center; min-height: 34px; padding: 0.35rem 0.75rem; border-radius: 999px;
  background: var(--green-soft); color: var(--green-strong); border: 1px solid rgba(47, 122, 78, 0.08);
  font-size: 0.84rem; font-weight: 700;
}
.card { border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.84); border: 1px solid rgba(15, 23, 42, 0.06); box-shadow: var(--shadow-sm); }
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h); display: flex; align-items: center;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}
.nav { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.brand-logo { width: 40px; height: 40px; object-fit: contain; border-radius: 12px; }
.brand-text { font-size: 1.02rem; font-weight: 800; letter-spacing: -0.02em; white-space: nowrap; }
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-menu a {
  display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0.6rem 0.88rem;
  border-radius: 16px; color: #44546f; font-size: 0.94rem; font-weight: 800; white-space: nowrap; transition: background 0.15s, color 0.15s;
}
.nav-menu a:hover { background: rgba(183, 228, 122, 0.35); color: var(--text); }
.nav-menu a.active { background: rgba(183, 228, 122, 0.4); color: var(--green-strong); }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 255, 255, 0.85); cursor: pointer; }
.nav-toggle-lines { display: block; width: 22px; height: 14px; position: relative; }
.nav-toggle-lines::before, .nav-toggle-lines::after { content: ""; position: absolute; left: 0; width: 100%; height: 2.5px; border-radius: 999px; background: currentColor; transition: transform 0.22s ease; }
.nav-toggle-lines::before { top: 2px; }
.nav-toggle-lines::after { bottom: 2px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after { transform: translateY(-4px) rotate(-45deg); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem; min-height: 48px; padding: 0.8rem 1.15rem;
  border-radius: 16px; font-size: 0.92rem; font-weight: 800; cursor: pointer; border: 1px solid rgba(47, 122, 78, 0.1);
  background: linear-gradient(180deg, #cbe89e 0%, #b7e47a 100%); color: #10301f; box-shadow: 0 10px 24px rgba(102, 153, 51, 0.14);
}
.btn-small { min-height: 42px; padding: 0.56rem 0.95rem; font-size: 0.9rem; }
.manual-hero { padding: 4.7rem 0 2.35rem; }
.manual-hero__grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 2rem; align-items: center; }
.manual-hero__badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.25rem; }
.manual-hero__card { display: flex; justify-content: flex-end; }
.manual-mini-card { max-width: 330px; width: 100%; padding: 1.25rem; border-radius: 24px; background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(248,251,253,.92)); border: 1px solid rgba(15, 23, 42, 0.06); box-shadow: var(--shadow-md); }
.manual-mini-card__label { display: block; margin-bottom: 0.45rem; font-family: "Sora", sans-serif; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-strong); }
.manual-search-section { padding: 0 0 2rem; }
.manual-search-box { padding: 1.45rem; }
.manual-search-box__copy { margin-bottom: 1rem; }
.search-trigger { display: flex; align-items: center; gap: 0.75rem; width: 100%; min-height: 56px; padding: 0 1.1rem; border-radius: var(--radius-md); border: 1.5px solid rgba(15, 23, 42, 0.1); background: #fff; cursor: pointer; text-align: left; box-shadow: var(--shadow-xs); }
.search-trigger__icon { display: flex; align-items: center; color: var(--muted); }
.search-trigger__text { flex: 1; color: var(--muted); font-size: 0.96rem; }
.search-trigger__kbd { display: inline-flex; align-items: center; padding: 0.2rem 0.5rem; border-radius: 8px; background: var(--bg); border: 1px solid var(--line); font-size: 0.78rem; font-weight: 700; color: var(--muted); }
#search-overlay { position: fixed; inset: 0; z-index: 9000; display: flex; align-items: flex-start; justify-content: center; padding: calc(var(--header-h) + 1.5rem) 1rem 1rem; }
#search-overlay[hidden] { display: none; }
.search-overlay__backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.45); backdrop-filter: blur(3px); }
.search-overlay__panel { position: relative; width: 100%; max-width: 640px; max-height: calc(100dvh - var(--header-h) - 3rem); background: white; border-radius: var(--radius-xl); border: 1px solid rgba(15, 23, 42, 0.08); box-shadow: var(--shadow-lg); overflow: hidden; display: flex; flex-direction: column; }
.search-overlay__header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.2rem 0.75rem; border-bottom: 1px solid var(--line); }
.search-overlay__label { font-family: "Sora", sans-serif; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.search-overlay__close { width: 34px; height: 34px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg); cursor: pointer; color: var(--muted); }
.search-ui { flex: 1; overflow-y: auto; padding: 0.9rem; }
.search-ui__input { width: 100%; min-height: 52px; padding: 0.8rem 1rem; border-radius: var(--radius-md); border: 1.5px solid var(--line); background: var(--bg); font-size: 1rem; color: var(--text); outline: none; }
.search-ui__input:focus { border-color: var(--blue-strong); box-shadow: 0 0 0 3px rgba(78, 169, 219, 0.18); background: white; }
.search-ui__hint { padding: 0.6rem 0.25rem 0; font-size: 0.88rem; color: var(--muted); }
.search-results { margin-top: 0.75rem; display: grid; gap: 0.35rem; }
.search-result { padding: 0.85rem 0.9rem; border-radius: var(--radius-sm); border: 1px solid transparent; }
.search-result:hover { background: var(--green-soft); border-color: rgba(47, 122, 78, 0.12); }
.search-result__type { display: inline-block; margin-bottom: 0.25rem; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.search-result__link { display: block; font-family: "Sora", sans-serif; font-weight: 700; font-size: 0.96rem; color: var(--green-strong); }
.search-result__text { margin-top: 0.28rem; color: var(--muted); font-size: 0.9rem; }
.search-empty { padding: 0.8rem 0.25rem; color: var(--muted); font-weight: 600; }
.manual-shell-section { padding: 0 0 4rem; }
.manual-shell { display: grid; grid-template-columns: var(--sidebar-w) minmax(0, 1fr); gap: 1.4rem; align-items: start; }
.manual-sidebar { position: sticky; top: calc(var(--header-h) + 1.2rem); display: grid; gap: 1rem; max-height: calc(100dvh - var(--header-h) - 2.5rem); overflow-y: auto; }
.manual-sidebar__box { padding: 1rem; border-radius: 22px; background: rgba(255, 255, 255, 0.84); border: 1px solid rgba(15, 23, 42, 0.06); box-shadow: var(--shadow-sm); }
.manual-sidebar__title { margin-bottom: 0.75rem; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.manual-nav, .manual-toc { display: grid; gap: 0.2rem; }
.manual-nav a, .manual-toc a { display: block; padding: 0.62rem 0.78rem; border-radius: 14px; color: var(--muted); font-size: 0.9rem; font-weight: 700; line-height: 1.4; }
.manual-nav a:hover, .manual-toc a:hover { background: rgba(183, 228, 122, 0.22); color: var(--text); }
.manual-nav a.active, .manual-toc a.active { background: rgba(183, 228, 122, 0.38); color: var(--green-strong); font-weight: 800; }
.manual-content-wrap { min-width: 0; }
.manual-content { padding: 1.8rem 2rem; }
.manual-block + .manual-block { margin-top: 2.75rem; padding-top: 2rem; border-top: 1px solid rgba(15, 23, 42, 0.07); }
.manual-content h2 { margin-top: 0.3rem; }
.manual-content h3 { margin-top: 1.6rem; }
.manual-content p { margin-top: 0.85rem; color: var(--text-soft); }
.manual-content ul, .manual-content ol { margin-top: 0.85rem; }
.manual-content li { margin-top: 0.35rem; color: var(--text-soft); }
.manual-content details { margin-top: 0.85rem; padding: 0.95rem 1rem; border-radius: 20px; border: 1px solid rgba(15, 23, 42, 0.06); background: rgba(255,255,255,.82); box-shadow: var(--shadow-xs); }
.manual-content summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; list-style: none; font-weight: 800; }
.manual-content summary::-webkit-details-marker { display: none; }
.manual-content summary::after { content: "+"; flex-shrink: 0; font-size: 1.3rem; color: var(--muted); }
.manual-content details[open] summary::after { content: "−"; }
.manual-intro-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-top: 1.2rem; }
.manual-overview-card { padding: 1.35rem; border-radius: 24px; background: rgba(255, 255, 255, 0.84); border: 1px solid rgba(15, 23, 42, 0.06); box-shadow: var(--shadow-sm); }
.manual-overview-card__nr { display: block; margin-bottom: 0.75rem; font-family: "Sora", sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--blue-strong); }
.manual-pagination { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.manual-pagination__link { display: flex; flex-direction: column; gap: 0.25rem; padding: 1rem 1.1rem; border-radius: 20px; background: rgba(255, 255, 255, 0.84); border: 1px solid rgba(15, 23, 42, 0.06); box-shadow: var(--shadow-sm); }
.manual-pagination__link--next { text-align: right; }
.manual-pagination__label { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.site-footer { padding: 2rem 0; border-top: 1px solid rgba(15, 23, 42, 0.06); background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(10px); }
.footer-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-brand { display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 0.25rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center; }
.footer-links a { padding: 0.38rem 0.62rem; border-radius: 12px; color: var(--muted); font-weight: 700; font-size: 0.9rem; }
.to-top { position: fixed; right: 18px; bottom: 18px; z-index: 70; width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(15, 23, 42, 0.08); border-radius: 18px; background: rgba(255,255,255,.92); color: var(--text); box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .25s ease, transform .25s ease; }
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
@media (max-width: 980px) {
  .manual-hero__grid { grid-template-columns: 1fr; }
  .manual-shell { grid-template-columns: 1fr; }
  .manual-hero__copy { text-align: center; }
  .manual-hero__badges { justify-content: center; }
  .manual-hero__card { justify-content: center; }
  .manual-sidebar { position: static; max-height: none; overflow: visible; }
  .manual-nav, .manual-toc { display: flex; flex-wrap: wrap; gap: 0.25rem; }
}
@media (max-width: 720px) {
  .container { width: min(var(--max), calc(100% - 1.2rem)); }
  .nav-toggle { display: inline-flex; }
  .nav-menu { position: absolute; top: calc(100% + 0.55rem); right: 0; width: min(420px, calc(100vw - 1.2rem)); display: none; flex-direction: column; align-items: stretch; gap: 0.25rem; padding: 0.8rem; border-radius: 22px; border: 1px solid rgba(15, 23, 42, 0.08); background: rgba(255, 255, 255, 0.98); box-shadow: var(--shadow-lg); z-index: 101; }
  .nav-menu.open { display: flex; }
  .nav-menu a { justify-content: flex-start; min-height: 48px; padding: 0.78rem 0.9rem; }
  .search-trigger__kbd { display: none; }
  #search-overlay { padding: 0.5rem; align-items: flex-end; }
  .search-overlay__panel { max-width: 100%; max-height: 85dvh; border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
  .manual-hero { padding: 3.6rem 0 2rem; }
  .manual-content { padding: 1.25rem; }
  .manual-pagination { grid-template-columns: 1fr; }
  .manual-pagination__link--next { text-align: left; }
  .footer-grid { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 400px) {
  h1 { font-size: 2rem; }
  .manual-content { padding: 1rem; }
  .manual-search-box { padding: 1rem; }
}
