:root {
  color-scheme: dark;
  --font-body: "Inter", system-ui, sans-serif;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --ink-950: #02050d;
  --ink-900: #050914;
  --ink-850: #07111f;
  --ink-800: #0b1728;
  --cyan: #55f1ff;
  --blue: #1c92ff;
  --violet: #7a5eff;
  --lavender: #d7d1ff;
  --white: #ffffff;
  --bg: var(--ink-950);
  --bg-deep: var(--ink-900);
  --surface: rgba(8, 17, 32, 0.88);
  --surface-strong: rgba(10, 21, 39, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.045);
  --text: #f2f6ff;
  --muted: rgba(225, 234, 255, 0.72);
  --line: rgba(85, 241, 255, 0.16);
  --line-strong: rgba(85, 241, 255, 0.3);
  --accent: var(--cyan);
  --accent-2: var(--blue);
  --accent-3: var(--violet);
  --button-text: #02050d;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  --glow-cyan: rgba(85, 241, 255, 0.18);
  --glow-violet: rgba(122, 94, 255, 0.16);
}

body.theme-light {
  color-scheme: light;
  --bg: #f7fbff;
  --bg-deep: #eef5ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-soft: rgba(2, 5, 13, 0.045);
  --text: #08111f;
  --muted: rgba(8, 17, 31, 0.68);
  --line: rgba(28, 146, 255, 0.18);
  --line-strong: rgba(122, 94, 255, 0.26);
  --button-text: #ffffff;
  --shadow: 0 28px 80px rgba(28, 72, 124, 0.16);
  --glow-cyan: rgba(85, 241, 255, 0.34);
  --glow-violet: rgba(122, 94, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 9% 0%, var(--glow-cyan), transparent 32%),
    radial-gradient(circle at 88% 10%, var(--glow-violet), transparent 30%),
    linear-gradient(135deg, var(--bg), var(--bg-deep) 56%, var(--bg));
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(46px);
}

body::before {
  top: 6vh;
  right: -10vw;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, var(--glow-cyan), transparent 68%);
}

body::after {
  bottom: 4vh;
  left: -10vw;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, var(--glow-violet), transparent 70%);
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
.button,
.nav a {
  font-family: var(--font-display);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 54px;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 90px;
  margin-bottom: 34px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 clamp(220px, 25vw, 330px);
  width: clamp(220px, 25vw, 330px);
  min-width: 220px;
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  border-color: var(--line);
  background: var(--surface-soft);
  transform: translateY(-1px);
}

.nav a.aktiv {
  color: var(--button-text);
  background: linear-gradient(135deg, var(--cyan), var(--blue) 52%, var(--violet));
  box-shadow: 0 14px 34px rgba(28, 146, 255, 0.22);
}

.nav a.theme-toggle {
  width: 42px;
  min-width: 42px;
  padding: 0;
  justify-content: center;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1;
  border-color: var(--line);
  background:
    radial-gradient(circle at 35% 35%, rgba(85, 241, 255, 0.18), transparent 46%),
    var(--surface-soft);
}

.topbar-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  width: 42px;
  min-width: 42px;
  min-height: 42px;
  margin-left: auto;
}

.nav a.theme-toggle:hover,
.nav a.theme-toggle:focus-visible {
  color: var(--cyan);
  border-color: var(--line-strong);
}

body.theme-light .nav a.aktiv {
  color: #ffffff;
}

body.theme-light .nav a.theme-toggle {
  color: #08111f;
  background:
    radial-gradient(circle at 35% 35%, rgba(28, 146, 255, 0.16), transparent 46%),
    rgba(8, 17, 31, 0.045);
}

.hero,
.section,
.cta-section {
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(85, 241, 255, 0.075), transparent 30%),
    radial-gradient(circle at bottom left, rgba(122, 94, 255, 0.07), transparent 34%),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

body.theme-light .hero,
body.theme-light .section,
body.theme-light .cta-section {
  background:
    radial-gradient(circle at top right, rgba(85, 241, 255, 0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(122, 94, 255, 0.12), transparent 36%),
    var(--surface-strong);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 26px;
  padding: clamp(26px, 4vw, 48px);
}

.hero-copy {
  position: relative;
  padding: 10px;
}

.hero-copy::before {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.theme-light .eyebrow {
  color: #126fc6;
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: 0.93;
  letter-spacing: -0.075em;
}

.lead {
  max-width: 58ch;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.78;
}

.hero-actions,
.trust-list,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--button-text);
  background: linear-gradient(135deg, var(--cyan), var(--blue) 54%, var(--violet));
  box-shadow: 0 18px 38px rgba(28, 146, 255, 0.24);
}

body.theme-light .button-primary {
  color: #ffffff;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: var(--surface-soft);
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li,
.card-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(85, 241, 255, 0.12), rgba(122, 94, 255, 0.08));
  color: var(--muted);
}

.trust-list li {
  padding: 10px 15px;
}

.hero-card,
.service-card,
.content-card,
.process-grid article,
.resource-list article {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
  border-radius: 30px;
}

.card-chip {
  width: fit-content;
  padding: 10px 16px;
  color: var(--cyan);
  font-weight: 800;
}

body.theme-light .card-chip {
  color: #126fc6;
}

.metric-grid {
  display: grid;
  gap: 14px;
}

.metric-grid article,
.service-card,
.content-card,
.process-grid article,
.resource-list article {
  border-radius: 24px;
}

.metric-grid article,
.service-card,
.content-card,
.process-grid article {
  padding: 22px;
}

.metric-grid span,
.process-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--cyan);
  font-weight: 900;
}

body.theme-light .metric-grid span,
body.theme-light .process-grid span {
  color: #126fc6;
}

.metric-grid strong,
.service-card h3,
.content-card h3,
.process-grid h3,
.resource-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-family: var(--font-display);
  letter-spacing: -0.035em;
}

.metric-grid p,
.service-card p,
.content-card p,
.process-grid p,
.resource-list span,
.section-heading p:not(.eyebrow),
.cta-section p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

.section,
.cta-section {
  margin-top: 26px;
  padding: clamp(24px, 4vw, 40px);
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2,
.cta-section h2 {
  max-width: 15ch;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-heading h2::after,
.service-card h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), transparent);
}

.service-grid,
.content-grid,
.process-grid,
.resource-list {
  display: grid;
  gap: 16px;
}

.service-grid,
.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.content-card,
.process-grid article {
  min-height: 178px;
}

.resource-list article {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
}

.codebox {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(2, 5, 13, 0.46), rgba(2, 5, 13, 0.22)),
    var(--surface);
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  line-height: 1.58;
  overflow-x: auto;
}

.codebox span {
  display: block;
}

body.theme-light .codebox {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 251, 255, 0.78)),
    rgba(8, 17, 31, 0.035);
}

.cta-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.contact-details {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.contact-details span:first-child,
.contact-details a {
  color: var(--text);
  font-weight: 800;
}

.contact-details a:hover,
.footer-links a:hover {
  color: var(--cyan);
}

.product-card {
  position: relative;
}

.product-ready {
  border-color: var(--line-strong);
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cyan);
  background: linear-gradient(135deg, rgba(85, 241, 255, 0.13), rgba(122, 94, 255, 0.08));
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.product-meta span,
.product-link {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  font-weight: 800;
}

.product-meta span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface-soft);
}

.product-link {
  margin-top: 12px;
  color: var(--cyan);
}

.compact-list {
  margin-top: 16px;
}

body.theme-light .status-pill,
body.theme-light .product-link {
  color: #126fc6;
}

.policy-section h1 {
  max-width: 14ch;
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.consent-panel {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.consent-panel p {
  max-width: 64ch;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding: 22px 4px 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0 0 4px;
}

.site-footer strong {
  color: var(--text);
}

.footer-links a {
  color: var(--muted);
}

@media (max-width: 1280px) and (min-width: 1041px) {
  .topbar {
    gap: 14px;
    padding: 13px 18px;
  }

  .brand {
    flex-basis: clamp(220px, 20vw, 260px);
    width: clamp(220px, 20vw, 260px);
  }

  .nav {
    gap: 6px;
  }

  .nav a {
    min-height: 40px;
    padding: 9px 10px;
    font-size: 0.92rem;
  }

  .topbar-toggle {
    margin-left: 0;
  }
}

@media (max-width: 1040px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
  }

  .brand {
    flex: 0 0 auto;
    width: min(220px, 70vw);
    min-width: 0;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero,
  .service-grid,
  .content-grid,
  .process-grid,
  .cta-section,
  .consent-panel {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 128px;
  }

  .page-shell {
    width: min(100% - 20px, 1180px);
    padding: 8px 0 34px;
  }

  .topbar,
  .hero,
  .section,
  .cta-section {
    border-radius: 22px;
  }

  .topbar {
    top: 8px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 8px 10px;
    min-height: 0;
    margin-bottom: 14px;
    padding: 10px;
  }

  .brand {
    flex: 0 0 auto;
    width: min(172px, 62vw);
    min-width: 0;
  }

  .brand-logo {
    max-height: 40px;
  }

  .nav {
    grid-column: 1 / -1;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 6px;
    margin: 0 -2px -6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    width: auto;
    min-width: 0;
    flex: 0 0 auto;
    justify-content: center;
    padding: 8px 12px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .nav a.theme-toggle {
    width: 100%;
    min-width: 0;
  }

  .topbar-toggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    margin: 0;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 11.4vw, 3.4rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .hero,
  .section,
  .cta-section {
    padding: 20px;
  }

  .hero {
    gap: 18px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy::before {
    width: 72px;
    margin-bottom: 20px;
  }

  .lead {
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 18px;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .trust-list li {
    flex: 1 1 auto;
  }

  .nav a {
    min-height: 38px;
  }

  .nav a.theme-toggle {
    width: 38px;
    min-width: 38px;
  }

  .hero-card,
  .metric-grid article,
  .service-card,
  .content-card,
  .process-grid article {
    border-radius: 20px;
  }

  .hero-card,
  .metric-grid article,
  .service-card,
  .content-card,
  .process-grid article,
  .resource-list article {
    padding: 18px;
  }

  .section-heading h2,
  .cta-section h2,
  .policy-section h1 {
    max-width: 13ch;
    font-size: clamp(1.9rem, 8.6vw, 2.75rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .service-card,
  .content-card,
  .process-grid article {
    min-height: 0;
  }

  .site-footer {
    display: grid;
    gap: 12px;
    padding-top: 16px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 430px) {
  .page-shell {
    width: min(100% - 14px, 1180px);
  }

  .topbar,
  .hero,
  .section,
  .cta-section {
    border-radius: 18px;
  }

  .topbar {
    padding: 10px;
  }

  .brand {
    flex: 0 0 auto;
    width: min(150px, 58vw);
  }

  .brand-logo {
    max-height: 38px;
  }

  .nav {
    gap: 5px;
  }

  .nav a {
    font-size: 0.84rem;
    padding: 7px 10px;
  }

  .hero,
  .section,
  .cta-section {
    padding: 17px;
  }

  .hero h1 {
    max-width: 12.5ch;
    font-size: clamp(2.08rem, 10.8vw, 2.85rem);
    letter-spacing: -0.035em;
  }

  .eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .metric-grid article,
  .service-card,
  .content-card,
  .process-grid article,
  .resource-list article {
    padding: 16px;
  }
}

body.theme-light {
  background:
    radial-gradient(circle at 8% 0%, rgba(85, 241, 255, 0.34), transparent 32%),
    radial-gradient(circle at 88% 6%, rgba(122, 94, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f6fbff 42%, #eef5ff 100%);
}

body.theme-light::before {
  background: radial-gradient(circle, rgba(85, 241, 255, 0.28), transparent 68%);
}

body.theme-light::after {
  background: radial-gradient(circle, rgba(122, 94, 255, 0.16), transparent 70%);
}

body.theme-light .topbar,
body.theme-light .hero,
body.theme-light .section,
body.theme-light .cta-section {
  border-color: rgba(28, 146, 255, 0.18);
  background:
    radial-gradient(circle at top right, rgba(85, 241, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 249, 255, 0.9));
  box-shadow: 0 28px 80px rgba(28, 72, 124, 0.16);
}

body.theme-light .topbar {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.9)),
    radial-gradient(circle at top left, rgba(85, 241, 255, 0.18), transparent 34%);
}

body.theme-light .hero-card,
body.theme-light .service-card,
body.theme-light .content-card,
body.theme-light .process-grid article,
body.theme-light .resource-list article {
  border-color: rgba(28, 146, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.82)),
    radial-gradient(circle at top right, rgba(85, 241, 255, 0.12), transparent 34%);
}

body.theme-light .nav a:hover,
body.theme-light .nav a:focus-visible,
body.theme-light .button-secondary,
body.theme-light .trust-list li,
body.theme-light .card-chip {
  background: rgba(8, 17, 31, 0.045);
}

.ad-space {
  min-height: 0;
  overflow: hidden;
}

.ad-space:has(ins[data-ad-status="unfilled"]) {
  display: none;
}

.ad-space ins[data-ad-status="unfilled"] {
  display: none;
}
