:root {
  --ink: #f6f8fb;
  --ink-soft: #c6cfdd;
  --muted: #8894a7;
  --night: #060a10;
  --night-2: #0a1019;
  --panel: rgba(15, 23, 35, .82);
  --panel-solid: #101824;
  --line: rgba(180, 202, 232, .13);
  --blue: #4d8dff;
  --blue-2: #76a9ff;
  --mint: #6df0c2;
  --amber: #ffce72;
  --danger: #ff7a86;
  --shadow: 0 30px 80px rgba(0, 0, 0, .36);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 141, 255, .13), transparent 31rem),
    radial-gradient(circle at 92% 18%, rgba(109, 240, 194, .08), transparent 28rem),
    var(--night);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .26;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

a { color: inherit; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; }

.shell { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: fixed; left: 14px; top: -80px; z-index: 999; background: white; color: #000; padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { top: 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(6, 10, 16, .78);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 21px; font-weight: 800; }
.brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px;
  color: #061018; background: linear-gradient(135deg, var(--mint), #b8ffe6);
  box-shadow: 0 0 30px rgba(109, 240, 194, .18);
}
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { color: var(--ink-soft); text-decoration: none; font-size: 14px; font-weight: 600; transition: .2s; }
.desktop-nav a:hover, .desktop-nav a.active { color: white; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.menu-toggle { display: none; border: 1px solid var(--line); background: var(--panel); color: white; border-radius: 12px; width: 44px; height: 44px; }

.button {
  min-height: 46px;
  padding: 0 19px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #061018; border-color: transparent; background: linear-gradient(135deg, var(--mint), #b5ffe5); box-shadow: 0 12px 32px rgba(109,240,194,.14); }
.button-secondary { background: rgba(255,255,255,.045); color: white; }
.button-ghost { border-color: transparent; color: var(--ink-soft); }
.button-lg { min-height: 54px; padding: 0 24px; border-radius: 16px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; color: var(--mint);
  font-size: 12px; text-transform: uppercase; letter-spacing: .13em; font-weight: 800;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 14px var(--mint); }
h1, h2, h3 { font-family: Inter, "Segoe UI", Arial, sans-serif; margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(46px, 6.4vw, 82px); line-height: .98; letter-spacing: -.065em; }
h2 { margin-bottom: 16px; font-size: clamp(34px, 4.5vw, 58px); line-height: 1.04; letter-spacing: -.05em; }
h3 { margin-bottom: 10px; line-height: 1.18; letter-spacing: -.025em; }
.gradient-text { color: transparent; background: linear-gradient(100deg, white 5%, #9cc1ff 51%, #9effdc); background-clip: text; }
.lead { color: var(--ink-soft); font-size: clamp(17px, 2vw, 21px); line-height: 1.65; max-width: 680px; }
.section-copy { color: var(--ink-soft); font-size: 17px; line-height: 1.7; max-width: 650px; }

.hero { min-height: calc(100vh - 82px); display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; padding: 62px 0 74px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 33px; }
.micro-trust { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: 13px; }
.micro-trust span::before { content: "✓"; color: var(--mint); margin-right: 7px; font-weight: 800; }

.product-stage { position: relative; perspective: 1400px; }
.product-stage::before { content: ""; position: absolute; width: 75%; height: 75%; border-radius: 50%; background: rgba(77,141,255,.18); filter: blur(90px); left: 10%; top: 12%; }
.app-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(157, 191, 239, .2);
  border-radius: 28px;
  background: #0b121c;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.02) inset;
  transform: rotateY(-7deg) rotateX(3deg);
}
.window-bar { height: 47px; display: flex; align-items: center; gap: 7px; padding: 0 17px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.025); }
.window-dot { width: 8px; height: 8px; border-radius: 50%; background: #344052; }
.window-title { margin-left: auto; margin-right: auto; color: #6e7b8e; font-size: 11px; }
.mock-layout { display: grid; grid-template-columns: 155px 1fr; min-height: 455px; }
.mock-sidebar { padding: 18px 13px; border-right: 1px solid var(--line); background: #0a1018; }
.mock-logo { color: var(--ink); font-size: 17px; letter-spacing: -.03em; font-weight: 800; margin: 4px 8px 20px; }
.mock-logo::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 3px; background: var(--mint); box-shadow: 0 0 14px rgba(109,240,194,.5); }
.mock-nav { min-height: 31px; margin: 7px 0; padding: 0 10px; border-radius: 9px; display: flex; align-items: center; background: rgba(255,255,255,.035); }
.mock-nav span { color: #718095; font-size: 10px; font-weight: 650; }
.mock-nav.active { background: rgba(77,141,255,.16); border: 1px solid rgba(77,141,255,.16); }
.mock-nav.active span { color: #d8e6fb; }
.mock-main { padding: 22px; background: radial-gradient(circle at 100% 0, rgba(77,141,255,.08), transparent 50%); }
.mock-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 18px; }
.mock-head strong { font-size: 19px; }
.mock-head small { display: block; color: var(--muted); margin-top: 4px; }
.plan-chip { padding: 7px 10px; border-radius: 999px; background: rgba(109,240,194,.09); color: var(--mint); font-size: 10px; font-weight: 700; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stat { border: 1px solid var(--line); padding: 13px; border-radius: 14px; background: rgba(255,255,255,.025); }
.stat span { display: block; color: var(--muted); font-size: 9px; margin-bottom: 7px; }
.stat strong { font-size: 16px; }
.stat em { color: var(--mint); font-size: 9px; font-style: normal; margin-left: 5px; }
.chart-card { height: 150px; margin-top: 11px; border-radius: 16px; border: 1px solid var(--line); padding: 14px 16px; background: rgba(255,255,255,.02); }
.chart-head { display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; }
.chart-head strong { color: var(--ink-soft); font-weight: 700; }
.bars { height: 94px; display: flex; gap: 8px; align-items: end; }
.bars i { display: block; flex: 1; border-radius: 5px 5px 2px 2px; background: linear-gradient(to top, rgba(77,141,255,.28), var(--blue)); }
.payment-row { display: grid; grid-template-columns: 1.3fr .7fr .5fr; gap: 10px; margin-top: 10px; }
.payment-row span { height: 45px; padding: 9px 10px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.025); color: var(--muted); font-size: 8px; }
.payment-row strong { display: block; margin-top: 3px; color: var(--ink-soft); font-size: 11px; }
.float-card {
  position: absolute; z-index: 3; border: 1px solid rgba(109,240,194,.22); border-radius: 16px;
  padding: 13px 15px; background: rgba(9,16,24,.88); backdrop-filter: blur(14px); box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.float-card strong { display: block; font-size: 13px; }
.float-card span { color: var(--mint); font-size: 11px; }
.float-one { right: -18px; top: 22%; animation: drift 5s ease-in-out infinite; }
.float-two { left: -20px; bottom: 10%; animation: drift 5s ease-in-out 1s infinite; }
@keyframes drift { 50% { transform: translateY(-9px); } }

.logo-strip { padding: 18px 0 58px; }
.trust-line { border: 1px solid var(--line); border-radius: 18px; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--muted); }
.trust-items { display: flex; flex-wrap: wrap; gap: 28px; color: var(--ink-soft); font-weight: 600; font-size: 13px; }

.section { padding: 82px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 46px; }
.section-head > * { margin-bottom: 0; }
.section-kicker { color: var(--blue-2); font-size: 13px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 12px; }
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.bento-card {
  position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  min-height: 285px;
}
.bento-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 100% 0%, rgba(77,141,255,.10), transparent 45%); }
.bento-card > * { position: relative; z-index: 1; }
.bento-card p { color: var(--ink-soft); line-height: 1.65; max-width: 440px; margin-bottom: 0; }
.bento-large { grid-column: span 7; }
.bento-small { grid-column: span 5; }
.bento-third { grid-column: span 4; display: flex; flex-direction: column; }
.bento-third p { margin-bottom: 22px; }
.bento-large, .bento-small { display: grid; grid-template-columns: minmax(0, 1fr) minmax(170px, .82fr); grid-template-rows: auto auto 1fr; column-gap: 24px; align-items: start; }
.bento-large > :not(.mini-calendar), .bento-small > :not(.money-stack) { grid-column: 1; }
.card-number { color: var(--mint); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.mini-calendar { position: static; width: 100%; grid-column: 2; grid-row: 1 / 4; align-self: center; display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; opacity: .8; }
.mini-calendar span { aspect-ratio: 1; border-radius: 7px; background: rgba(255,255,255,.05); border: 1px solid var(--line); }
.mini-calendar span:nth-child(7), .mini-calendar span:nth-child(13), .mini-calendar span:nth-child(19) { background: rgba(77,141,255,.45); }
.money-stack { position: static; width: 100%; grid-column: 2; grid-row: 1 / 4; align-self: end; display: grid; gap: 7px; }
.money-stack span { border: 1px solid var(--line); background: #111b29; border-radius: 10px; padding: 10px 12px; font-size: 11px; }
.money-stack span::after { content: attr(data-value); float: right; color: var(--mint); }

.mini-customers, .mini-flow, .mini-kpis { width: 100%; margin-top: auto; }
.mini-customers { display: grid; gap: 7px; }
.mini-customers span { min-width: 0; display: grid; grid-template-columns: 28px minmax(0, 1fr) auto; align-items: center; gap: 9px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 10px; background: rgba(10,18,28,.72); }
.mini-customers i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; background: rgba(77,141,255,.16); color: #a9c7ff; font-size: 8px; font-style: normal; font-weight: 800; }
.mini-customers b { overflow: hidden; color: var(--ink-soft); font-size: 9px; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.mini-customers em { color: var(--mint); font-size: 8px; font-style: normal; white-space: nowrap; }
.mini-flow { padding: 11px 13px 9px; border: 1px solid var(--line); border-radius: 12px; background: rgba(10,18,28,.72); }
.mini-flow > div:first-child { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.mini-flow span { color: var(--muted); font-size: 9px; }
.mini-flow strong { color: var(--ink); font-size: 12px; }
.flow-bars { height: 44px; display: flex; align-items: end; gap: 6px; margin-top: 8px; }
.flow-bars i { flex: 1; min-height: 5px; border-radius: 3px 3px 1px 1px; background: linear-gradient(to top, rgba(77,141,255,.25), var(--blue)); }
.mini-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.mini-kpis span { min-width: 0; padding: 10px 8px; border: 1px solid var(--line); border-radius: 10px; background: rgba(10,18,28,.72); }
.mini-kpis small, .mini-kpis strong { display: block; }
.mini-kpis small { color: var(--muted); font-size: 8px; }
.mini-kpis strong { margin-top: 4px; color: var(--ink); font-size: 10px; white-space: nowrap; }

.tool-switch { margin-top: 20px; padding: 28px 32px; border: 1px solid rgba(109,240,194,.18); border-radius: var(--radius-lg); display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 46px; background: linear-gradient(110deg, rgba(109,240,194,.07), rgba(77,141,255,.045)); }
.tool-switch h3 { margin: 8px 0 0; font-size: clamp(23px, 2.5vw, 32px); }
.tool-switch p { margin: 0; color: var(--ink-soft); line-height: 1.7; }

.workflow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; counter-reset: steps; }
.step { counter-increment: steps; padding: 22px 18px; border-top: 1px solid var(--line); }
.step::before { content: "0" counter(steps); display: block; color: var(--mint); font-size: 12px; font-weight: 800; margin-bottom: 24px; }
.step h3 { font-size: 17px; }
.step p { color: var(--muted); line-height: 1.6; }

.quote-panel { position: relative; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(34px, 6vw, 76px); background: linear-gradient(120deg, rgba(77,141,255,.09), rgba(109,240,194,.045)); }
.quote-panel blockquote { max-width: 880px; margin: 0; font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: clamp(28px, 4vw, 48px); line-height: 1.2; letter-spacing: -.04em; }
.quote-panel p { color: var(--muted); margin: 28px 0 0; }

.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 920px; margin: 0 auto; }
.price-card { border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 34px; background: rgba(255,255,255,.025); }
.price-card.featured { border-color: rgba(109,240,194,.28); background: linear-gradient(145deg, rgba(109,240,194,.08), rgba(77,141,255,.06)); box-shadow: 0 24px 80px rgba(0,0,0,.25); }
.price { font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 48px; letter-spacing: -.05em; margin: 24px 0 3px; }
.price small { color: var(--muted); font-size: 15px; letter-spacing: 0; }
.tax-note { color: var(--muted); font-size: 12px; }
.feature-list { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 13px; color: var(--ink-soft); }
.feature-list li::before { content: "✓"; color: var(--mint); margin-right: 10px; font-weight: 800; }
.badge { display: inline-flex; border: 1px solid rgba(109,240,194,.2); color: var(--mint); padding: 6px 9px; border-radius: 99px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }

.plan-comparison-section { padding-top: 46px; }
.comparison-intro { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.comparison-intro h2 { margin-top: 12px; }
.comparison-intro .section-copy { max-width: 680px; margin: 0 auto; }
.comparison-panel {
  max-width: 1060px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(16,24,36,.94), rgba(9,15,24,.94));
  box-shadow: 0 26px 80px rgba(0,0,0,.22);
}
.comparison-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.comparison-feature-column { width: 52%; }
.comparison-table th,
.comparison-table td { padding: 18px 24px; border-bottom: 1px solid rgba(180,202,232,.09); }
.comparison-table thead th {
  height: 92px;
  color: var(--muted);
  background: rgba(255,255,255,.018);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
}
.comparison-table thead th:not(:first-child),
.comparison-table tbody td { text-align: center; }
.comparison-plan-head strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -.03em;
  text-transform: none;
}
.comparison-plan-head span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}
.comparison-business-head { background: linear-gradient(180deg, rgba(109,240,194,.08), rgba(109,240,194,.025)) !important; }
.comparison-business-head strong { color: #b9f8df; }
.comparison-table tbody th[scope="row"] {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
  text-align: left;
}
.comparison-table tbody td:last-child { background: rgba(109,240,194,.018); }
.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td { border-bottom: 0; }
.comparison-group th {
  padding-top: 22px;
  padding-bottom: 10px;
  color: var(--blue-2);
  background: rgba(4,9,15,.34);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-align: left;
  text-transform: uppercase;
}
.comparison-mark {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(109,240,194,.26);
  border-radius: 9px;
  color: var(--mint);
  background: rgba(109,240,194,.08);
  font-size: 13px;
  font-weight: 900;
}
.comparison-unavailable { color: #596678; font-size: 18px; }
.comparison-value { color: var(--ink-soft); font-size: 12px; font-weight: 750; }
.comparison-value-business { color: #aeeed5; }
.comparison-note {
  padding: 17px 24px;
  border-top: 1px solid rgba(109,240,194,.12);
  color: var(--muted);
  background: rgba(109,240,194,.035);
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.faq { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 21px 0; }
.faq summary { cursor: pointer; list-style: none; font-weight: 700; font-size: 17px; display: flex; justify-content: space-between; gap: 20px; }
.faq summary::after { content: "+"; color: var(--mint); }
.faq details[open] summary::after { content: "−"; }
.faq p { color: var(--ink-soft); line-height: 1.7; max-width: 730px; }

.page-hero { padding: 100px 0 70px; text-align: center; }
.page-hero .lead { margin-left: auto; margin-right: auto; }
.page-hero .eyebrow { margin-bottom: 20px; }

.legal-main { padding: 70px 0 96px; }
.legal-hero { max-width: 980px; margin-bottom: 38px; }
.legal-hero .eyebrow { margin-bottom: 20px; }
.legal-hero h1 { max-width: 940px; margin-bottom: 20px; font-size: clamp(46px, 7vw, 78px); overflow-wrap: anywhere; -webkit-hyphens: auto; hyphens: auto; }
.legal-hero .lead { max-width: 780px; margin-bottom: 0; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.legal-nav a { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.025); text-decoration: none; font-size: 12px; font-weight: 700; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.legal-nav a:hover, .legal-nav a.active { color: var(--ink); border-color: rgba(109,240,194,.22); background: rgba(109,240,194,.07); }
.legal-document { max-width: 980px; display: grid; gap: 14px; }
.legal-section, .legal-box { border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.018)); }
.legal-section { padding: clamp(24px, 4vw, 38px); }
.legal-section h2 { margin-bottom: 18px; font-size: clamp(21px, 2.5vw, 28px); letter-spacing: -.035em; }
.legal-section h3 { margin: 24px 0 10px; font-size: 17px; color: var(--ink); }
.legal-section p, .legal-section li, .legal-box p { color: var(--ink-soft); font-size: 15px; line-height: 1.85; }
.legal-section p { margin: 0 0 14px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { margin: 12px 0 16px; padding-left: 21px; }
.legal-section li + li { margin-top: 4px; }
.legal-section a, .legal-box a { color: var(--blue-2); text-decoration: none; }
.legal-section a:hover, .legal-box a:hover { text-decoration: underline; }
.legal-section-highlight { border-color: rgba(109,240,194,.2); background: linear-gradient(120deg, rgba(109,240,194,.055), rgba(77,141,255,.035)); }
.legal-grid { max-width: 980px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.legal-box { padding: 27px; }
.legal-box h2 { margin-bottom: 13px; font-size: 17px; }
.legal-form-box { margin-top: 18px; padding: clamp(20px, 4vw, 30px); border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(4,9,15,.48); }
.legal-form-line { height: 1px; margin: 20px 0; background: var(--line); }
.legal-hero, .legal-document, .legal-grid, .legal-section, .legal-box { min-width: 0; }
.legal-section p, .legal-section li, .legal-section a, .legal-box p, .legal-box a { overflow-wrap: anywhere; word-break: normal; }
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; padding: 70px 0; border-top: 1px solid var(--line); }
.feature-block:nth-child(even) .feature-visual { order: -1; }
.feature-points { display: grid; gap: 12px; margin-top: 26px; }
.feature-point { display: flex; gap: 12px; color: var(--ink-soft); }
.feature-point i { color: var(--mint); font-style: normal; }
.feature-visual { min-height: 370px; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 24px; background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.015)); display: grid; place-items: center; }
.ui-demo { width: 100%; padding: 18px; border-radius: 20px; background: #0b121c; border: 1px solid var(--line); box-shadow: var(--shadow); }
.ui-row { min-height: 48px; padding: 11px; margin: 7px 0; display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line); border-radius: 11px; color: var(--ink-soft); font-size: 12px; }
.ui-row strong { color: white; }
.ui-row.success span { color: var(--mint); }

/* Vollständige Funktionsseite */
.functions-hero { padding-bottom: 48px; }
.functions-hero .lead { max-width: 820px; }
.function-index {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10,16,25,.78);
  backdrop-filter: blur(16px);
}
.function-index a { padding: 10px 15px; border-radius: 11px; color: var(--ink-soft); text-decoration: none; font-size: 12px; font-weight: 750; transition: .2s ease; }
.function-index a:hover { color: #071018; background: var(--mint); }
.function-section { scroll-margin-top: 92px; border-top: 1px solid rgba(180,202,232,.09); }
.function-heading { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(320px,.95fr); gap: 70px; align-items: end; margin-bottom: 44px; }
.function-heading h2 { margin: 12px 0 0; }
.function-heading .section-copy { max-width: 570px; margin: 14px 0 0; }
.plan-tag { display: inline-flex; padding: 7px 10px; border: 1px solid rgba(118,169,255,.22); border-radius: 999px; color: var(--blue-2); background: rgba(77,141,255,.06); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.plan-tag.business-tag { color: var(--mint); border-color: rgba(109,240,194,.25); background: rgba(109,240,194,.07); }
.function-showcase { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 22px; align-items: stretch; }
.dashboard-preview { padding: 25px; border: 1px solid rgba(118,169,255,.18); border-radius: var(--radius-xl); background: linear-gradient(145deg, rgba(77,141,255,.09), rgba(109,240,194,.035)); }
.preview-head { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 20px; color: white; font-weight: 800; }
.preview-head small { color: var(--mint); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.preview-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 15px; }
.preview-metrics span { min-width: 0; padding: 15px 12px; border: 1px solid var(--line); border-radius: 13px; background: rgba(7,13,21,.72); }
.preview-metrics small { display: block; margin-bottom: 7px; color: var(--muted); font-size: 10px; text-transform: uppercase; }
.preview-metrics strong { font-size: clamp(14px,2vw,20px); }
.preview-focus { display: flex; justify-content: space-between; gap: 20px; margin-top: 8px; padding: 14px 15px; border: 1px solid var(--line); border-radius: 13px; color: var(--ink-soft); background: rgba(7,13,21,.62); font-size: 13px; }
.preview-focus.positive b { color: var(--mint); }
.preview-focus.negative b { color: #ff9aa3; }
.capability-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.capability-list article { display: flex; gap: 14px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.022); }
.capability-list article > span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 29px;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(109,240,194,.2);
  border-radius: 9px;
  color: var(--mint);
  background: rgba(109,240,194,.055);
  font-size: 12px;
  font-weight: 900;
}
.capability-list h3 { margin: 0 0 8px; font-size: 15px; }
.capability-list p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.62; }
.capability-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.capability-card { min-height: 240px; padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.022); }
.capability-card.featured-capability { background: linear-gradient(145deg, rgba(77,141,255,.09), rgba(255,255,255,.02)); border-color: rgba(118,169,255,.25); }
.capability-label { color: var(--blue-2); font-size: 9px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.capability-card h3 { margin: 28px 0 10px; font-size: 20px; }
.capability-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
.mini-tabs { display: flex; gap: 6px; margin-top: 24px; }
.mini-tabs span { flex: 1; padding: 8px 4px; border: 1px solid var(--line); border-radius: 9px; color: var(--muted); font-size: 9px; text-align: center; }
.mini-tabs span.active { color: #071018; border-color: var(--mint); background: var(--mint); }
.controlling-feature-section { background: linear-gradient(180deg, rgba(77,141,255,.025), transparent 22%, transparent 82%, rgba(109,240,194,.018)); }
.controlling-overview { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 18px; }
.controlling-overview div { padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: rgba(12,19,29,.74); }
.controlling-overview span { display: block; margin-bottom: 9px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.controlling-overview strong { font-size: 19px; }
.positive-text { color: #aef2d5; }
.negative-text { color: #ff9ea7; }
.controlling-tabs-grid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 12px; }
.controlling-tab-card { grid-column: span 2; min-height: 380px; padding: 27px; border: 1px solid var(--line); border-radius: 23px; background: linear-gradient(150deg, rgba(17,26,39,.92), rgba(9,15,24,.9)); }
.controlling-tab-card:nth-child(4), .controlling-tab-card:nth-child(5) { grid-column: span 3; min-height: 350px; }
.tab-card-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
.tab-card-top span {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(109,240,194,.22);
  border-radius: 9px;
  color: var(--mint);
  background: rgba(109,240,194,.06);
  font-size: 13px;
  font-weight: 900;
}
.tab-card-top b { padding: 6px 9px; border: 1px solid rgba(109,240,194,.17); border-radius: 999px; color: #aeeed5; background: rgba(109,240,194,.05); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.controlling-tab-card h3 { margin: 0 0 10px; font-size: 21px; }
.controlling-tab-card p { margin: 0 0 22px; color: var(--ink-soft); font-size: 14px; line-height: 1.62; }
.controlling-tab-card ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.controlling-tab-card li { position: relative; padding-left: 17px; color: var(--ink-soft); font-size: 13px; line-height: 1.52; }
.controlling-tab-card li::before { content: ""; position: absolute; left: 0; top: .55em; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-2); }
.transparency-note { display: grid; grid-template-columns: auto 1fr; gap: 18px; margin-top: 16px; padding: 18px 20px; border: 1px solid rgba(255,206,114,.19); border-radius: 16px; background: rgba(255,206,114,.035); }
.transparency-note strong { color: var(--amber); font-size: 13px; line-height: 1.5; }
.transparency-note span { color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
.management-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.management-card { min-height: 225px; padding: 25px; border-top: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.018), transparent); }
.management-card > span { color: var(--blue-2); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.management-card h3 { margin: 38px 0 10px; font-size: 19px; }
.management-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
.data-flow-section { border-top: 1px solid rgba(180,202,232,.09); }
.flow-heading { max-width: 760px; margin-bottom: 38px; }
.flow-heading h2 { margin: 12px 0 14px; }
.data-flow { display: grid; grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr; align-items: center; gap: 8px; }
.data-flow > div { min-height: 158px; padding: 22px 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.022); }
.data-flow span {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  margin-bottom: 20px;
  border: 1px solid rgba(109,240,194,.2);
  border-radius: 9px;
  color: var(--mint);
  background: rgba(109,240,194,.05);
  font-size: 12px;
  font-weight: 900;
}
.data-flow strong { display: block; margin-bottom: 9px; font-size: 16px; }
.data-flow small { color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.data-flow i { position: relative; display: block; height: 1px; background: rgba(109,240,194,.32); }
.data-flow i::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid var(--mint); border-right: 1px solid var(--mint); transform: rotate(45deg); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 22px; }
.contact-aside, .contact-form { border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 32px; background: rgba(255,255,255,.025); }
.contact-details { display: grid; gap: 16px; margin-top: 34px; }
.contact-detail { padding: 16px; border: 1px solid var(--line); border-radius: 15px; }
.contact-detail span { display: block; color: var(--muted); font-size: 12px; margin-bottom: 5px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  width: 100%; color: white; background: #0a111a; border: 1px solid var(--line); border-radius: 13px; padding: 13px 14px; outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(77,141,255,.12); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note, .form-status { color: var(--muted); font-size: 12px; line-height: 1.5; }
.form-status { margin-top: 15px; }
.form-status.success { color: var(--mint); }
.form-status.error { color: var(--danger); }

.final-cta { padding: 82px 0; }
.cta-box { border: 1px solid rgba(109,240,194,.21); border-radius: var(--radius-xl); padding: clamp(36px, 7vw, 78px); text-align: center; background: radial-gradient(circle at 50% 0, rgba(109,240,194,.1), transparent 60%), rgba(255,255,255,.02); }
.cta-box p { margin-left: auto; margin-right: auto; }
.cta-box .hero-actions { justify-content: center; }

.site-footer { padding: 30px 0 44px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 35px; padding: 34px 0 60px; }
.footer-grid h3 { font-size: 13px; color: white; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: white; }
.footer-brand p { color: var(--muted); line-height: 1.6; max-width: 300px; font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; color: #677386; font-size: 12px; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 920px) {
  .desktop-nav, .nav-actions .button-secondary { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .site-header.mobile-open .desktop-nav {
    display: grid; position: absolute; top: 81px; left: 20px; right: 20px; padding: 20px;
    border: 1px solid var(--line); border-radius: 18px; background: rgba(8,13,21,.97); box-shadow: var(--shadow);
  }
  .hero { grid-template-columns: 1fr; padding-top: 55px; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .micro-trust { justify-content: center; }
  .product-stage { width: min(700px, 100%); margin: 0 auto; }
  .section-head { display: block; }
  .section-head .section-copy { margin-top: 16px; }
  .bento-large, .bento-small, .bento-third { grid-column: span 6; }
  .bento-large, .bento-small { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento-large > *, .bento-small > *, .mini-calendar, .money-stack { grid-column: 1; grid-row: auto; }
  .mini-calendar { width: min(100%, 270px); margin: 24px 0 0 auto; }
  .money-stack { width: min(100%, 280px); margin: 24px 0 0 auto; }
  .tool-switch { grid-template-columns: 1fr; gap: 16px; }
  .workflow { grid-template-columns: repeat(2, 1fr); }
  .feature-block { grid-template-columns: 1fr; gap: 35px; }
  .feature-block:nth-child(even) .feature-visual { order: initial; }
  .function-heading { grid-template-columns: 1fr; gap: 18px; }
  .function-showcase { grid-template-columns: 1fr; }
  .capability-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .controlling-tabs-grid { grid-template-columns: 1fr 1fr; }
  .controlling-tab-card,
  .controlling-tab-card:nth-child(4),
  .controlling-tab-card:nth-child(5) { grid-column: auto; min-height: 0; }
  .controlling-tab-card:last-child { grid-column: 1 / -1; }
  .management-grid { grid-template-columns: repeat(2,1fr); }
  .data-flow { grid-template-columns: 1fr 18px 1fr; }
  .data-flow > div:nth-of-type(3) { grid-column: 1; grid-row: 3; }
  .data-flow > div:nth-of-type(4) { grid-column: 3; grid-row: 3; }
  .data-flow > i:nth-of-type(2) { display: none; }
  .data-flow > i:nth-of-type(3) { grid-column: 2; grid-row: 3; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 26px, var(--max)); }
  .nav-wrap { min-height: 72px; }
  .site-header.mobile-open .desktop-nav { top: 71px; left: 13px; right: 13px; }
  .nav-actions .button-primary { display: none; }
  .hero { min-height: auto; padding: 45px 0 70px; gap: 45px; }
  h1 { font-size: clamp(43px, 14vw, 63px); }
  .app-window { transform: none; border-radius: 20px; }
  .mock-layout { grid-template-columns: 1fr; min-height: 370px; }
  .mock-sidebar { display: none; }
  .mock-main { padding: 14px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat:last-child { display: none; }
  .float-card { display: none; }
  .logo-strip { padding: 10px 0 44px; }
  .trust-line { align-items: stretch; flex-direction: column; gap: 13px; padding: 16px; border-radius: 16px; }
  .trust-line > span { padding: 0 2px; font-size: 12px; }
  .trust-items { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .trust-items span { min-width: 0; padding: 10px 11px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.025); font-size: 11px; }
  .trust-items span::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 10px rgba(109,240,194,.35); vertical-align: 1px; }
  .section { padding: 78px 0; }
  .bento-large, .bento-small, .bento-third { grid-column: 1 / -1; }
  .bento-card { min-height: 260px; padding: 23px; }
  .bento-third { min-height: 285px; }
  .mini-calendar, .money-stack { margin-left: 0; }
  .tool-switch { padding: 24px 23px; }
  .workflow, .pricing, .form-grid { grid-template-columns: 1fr; }
  .plan-comparison-section { padding-top: 26px; }
  .comparison-intro { margin-bottom: 28px; }
  .comparison-panel { border-radius: 22px; }
  .comparison-feature-column { width: 48%; }
  .comparison-table th,
  .comparison-table td { padding: 14px 9px; }
  .comparison-table thead th { height: 78px; font-size: 9px; letter-spacing: .06em; }
  .comparison-plan-head strong { font-size: 16px; }
  .comparison-plan-head span { font-size: 9px; line-height: 1.35; }
  .comparison-table tbody th[scope="row"] { font-size: 11px; line-height: 1.35; }
  .comparison-group th { padding: 18px 12px 9px; font-size: 9px; }
  .comparison-mark { width: 24px; height: 24px; border-radius: 8px; }
  .comparison-value { font-size: 10px; line-height: 1.3; }
  .comparison-note { padding: 15px 13px; font-size: 10px; }
  .field.full { grid-column: auto; }
  .feature-visual { min-height: 300px; padding: 15px; }
  .legal-main { padding: 48px 0 72px; }
  .legal-hero { margin-bottom: 28px; }
  .legal-hero h1 { max-width: 100%; font-size: clamp(34px, 10.5vw, 44px); line-height: 1.02; letter-spacing: -.045em; }
  .legal-hero .lead { font-size: 15px; line-height: 1.65; }
  .legal-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-nav a { min-width: 0; padding: 9px 8px; text-align: center; overflow-wrap: anywhere; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-section, .legal-box { padding: 20px; border-radius: 20px; }
  .legal-section p, .legal-section li, .legal-box p { font-size: 14px; line-height: 1.75; }
  .functions-hero { padding-bottom: 34px; }
  .function-index { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; padding: 8px; }
  .function-index a { display: grid; place-items: center; min-width: 0; padding: 11px 7px; border: 1px solid rgba(180,202,232,.1); background: rgba(255,255,255,.018); text-align: center; }
  .function-heading { margin-bottom: 28px; }
  .preview-metrics { grid-template-columns: 1fr 1fr; }
  .preview-metrics span:last-child { grid-column: 1 / -1; }
  .capability-list { grid-template-columns: 1fr; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 0; }
  .controlling-overview { grid-template-columns: 1fr 1fr; }
  .controlling-overview div { padding: 14px; }
  .controlling-overview strong { font-size: 16px; }
  .controlling-tabs-grid { grid-template-columns: 1fr; }
  .controlling-tab-card:last-child { grid-column: auto; }
  .controlling-tab-card { padding: 22px; }
  .transparency-note { grid-template-columns: 1fr; gap: 7px; }
  .management-grid { grid-template-columns: 1fr; }
  .management-card { min-height: 0; padding: 23px 5px; }
  .management-card h3 { margin-top: 26px; }
  .data-flow { grid-template-columns: 1fr; gap: 8px; }
  .data-flow > div,
  .data-flow > div:nth-of-type(3),
  .data-flow > div:nth-of-type(4) { grid-column: 1; grid-row: auto; min-height: 0; }
  .data-flow > i,
  .data-flow > i:nth-of-type(2),
  .data-flow > i:nth-of-type(3) { display: block !important; grid-column: 1; grid-row: auto; width: 1px; height: 20px; margin-left: 24px; }
  .data-flow i::after { right: -3px; top: auto; bottom: 0; transform: rotate(135deg); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Final refinement: preserve the clean direction, increase precision */
.site-header.is-scrolled { background: rgba(6,10,16,.88); }
.brand-mark { border-radius: 10px; background: #f4f7fb; color: #081018; box-shadow: none; }
.button-primary { background: #83edc7; box-shadow: 0 12px 35px rgba(109,240,194,.11); }
.hero { padding-top: 72px; gap: 68px; }
.hero-copy h1 { max-width: 680px; }
.hero-copy .lead { max-width: 610px; }
.app-window { border-color: rgba(181,207,242,.24); box-shadow: 0 38px 100px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.025) inset; }
.window-bar { background: rgba(255,255,255,.018); }
.bento-card { transition: transform .28s ease, border-color .28s ease, background .28s ease; }
.bento-card:hover { transform: translateY(-4px); border-color: rgba(173,203,241,.22); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.02)); }
.step { transition: background .25s ease; }
.step:hover { background: rgba(255,255,255,.018); }
.quote-panel { background: linear-gradient(120deg, rgba(77,141,255,.07), rgba(109,240,194,.03)); }
.price-card { transition: transform .28s ease, border-color .28s ease; }
.price-card:hover { transform: translateY(-4px); }
.site-footer { background: rgba(3,7,12,.38); }

@media (max-width: 920px) {
  .hero { gap: 62px; }
}
@media (max-width: 640px) {
  .hero { padding-top: 52px; }
  .bento-card:hover, .price-card:hover { transform: none; }
}
