:root {
  color-scheme: light;
  --white: #FFFFFF;
  --black: #000000;
  --ink: #0F172A;
  --brand: #14B8A6;
  --page: var(--white);
  --surface: var(--white);
  --surface-soft: var(--white);
  --muted: var(--black);
  --muted-strong: var(--ink);
  --line: rgba(15, 23, 42, 0.14);
  --line-strong: rgba(15, 23, 42, 0.24);
  --navy: var(--ink);
  --brand-dark: var(--ink);
  --brand-strong: var(--ink);
  --brand-accent: var(--brand);
  --brand-soft: rgba(20, 184, 166, 0.14);
  --blue: var(--brand);
  --blue-dark: var(--ink);
  --teal: var(--brand);
  --teal-bright: var(--brand);
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 12px 32px rgba(15, 23, 42, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--page);
  color: var(--black);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 340px),
    var(--page);
}

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

button {
  font: inherit;
}

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

p {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand,
.footer-brand {
  /* Galuso lockup: wordmark height ~= 0.64x symbol, gap ~= 0.22x symbol. */
  --lockup-symbol-size: 38px;
  --lockup-mark-box-size: 44px;
  --lockup-wordmark-height: 24px;
  --lockup-gap: 8px;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--lockup-gap);
}

.footer-brand {
  --lockup-symbol-size: 28px;
  --lockup-mark-box-size: 32px;
  --lockup-wordmark-height: 18px;
  --lockup-gap: 6px;
}

.brand-mark {
  width: var(--lockup-mark-box-size);
  height: var(--lockup-mark-box-size);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--ink);
}

.brand-mark svg {
  width: var(--lockup-symbol-size);
  height: var(--lockup-symbol-size);
}

.brand-bar-accent {
  fill: var(--brand);
}

.brand-bar-main {
  fill: var(--ink);
}

.brand-wordmark {
  display: block;
  width: auto;
  height: var(--lockup-wordmark-height);
  flex: 0 0 auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 820;
}

.desktop-nav a:hover {
  color: var(--brand-strong);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
}

.language-switch button {
  min-width: 38px;
  min-height: 30px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 900;
}

.language-switch button.active {
  background: var(--brand-dark);
  color: var(--white);
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 860;
  line-height: 1;
  white-space: nowrap;
}

.button-primary {
  background: var(--brand);
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(20, 184, 166, 0.22);
}

.button-primary:hover {
  background: var(--ink);
  color: var(--white);
}

.button-secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(15, 23, 42, 0.32);
  color: var(--brand-strong);
}

.section {
  padding: 86px 0;
}

.section-band {
  border-bottom: 1px solid var(--line);
}

.section-muted {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.hero {
  position: relative;
  padding: 78px 0 70px;
  overflow: hidden;
}

.hero .shell {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  align-items: center;
  gap: 48px;
}

.hero-copy {
  min-width: 0;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 16px;
}

.eyebrow,
.section-label {
  display: inline-block;
  margin-bottom: 12px;
  padding-left: 10px;
  border-left: 3px solid var(--brand);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 920;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 920;
}

.hero-meta .eyebrow,
.hero-meta .product-kicker {
  margin-bottom: 0;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.65rem, 5.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.26rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin: 0;
}

.hero-proof div {
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
}

.hero-proof dt {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-proof dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.reveal-ready [data-reveal],
.reveal-ready [data-reveal-item] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 420ms ease,
    transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-ready [data-reveal].is-visible,
.reveal-ready [data-reveal-item].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready [data-reveal-group] > [data-reveal-item]:nth-child(2) {
  transition-delay: 70ms;
}

.reveal-ready [data-reveal-group] > [data-reveal-item]:nth-child(3) {
  transition-delay: 120ms;
}

.reveal-ready [data-reveal-group] > [data-reveal-item]:nth-child(4) {
  transition-delay: 170ms;
}

.reveal-ready [data-reveal-group] > [data-reveal-item]:nth-child(5) {
  transition-delay: 220ms;
}

.reveal-ready [data-reveal-group] > [data-reveal-item]:nth-child(6) {
  transition-delay: 270ms;
}

.reveal-ready [data-reveal-group] > [data-reveal-item]:nth-child(7) {
  transition-delay: 320ms;
}

.product-preview {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-toolbar {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--ink);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 820;
}

.preview-toolbar div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand-accent);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.16);
}

.status-pill,
.timeline-list span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.74rem;
  font-weight: 900;
  white-space: nowrap;
}

.preview-toolbar .status-pill {
  border-color: rgba(20, 184, 166, 0.3);
  background: var(--brand);
  color: var(--ink);
}

.preview-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1px;
  background: var(--line);
}

.preview-documents,
.preview-timeline {
  position: relative;
  min-width: 0;
  background: var(--surface);
}

.panel-heading {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.panel-heading p {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-heading strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.document-list,
.timeline-list {
  list-style: none;
  margin: 0;
  padding: 16px;
}

.document-list {
  display: grid;
  gap: 10px;
}

.document-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.file-icon {
  width: 42px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--brand-dark);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
}

.file-icon.muted {
  background: var(--ink);
}

.document-list strong,
.document-list span {
  display: block;
  min-width: 0;
}

.document-list strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.document-list span {
  color: var(--muted);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.timeline-list {
  display: grid;
  gap: 12px;
}

.timeline-list li {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 13px;
  padding: 14px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline-list time {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.timeline-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.28;
}

.timeline-list p {
  margin-bottom: 9px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.source-card {
  margin: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--brand-soft), var(--white));
}

.source-card p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.88rem;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-section h2,
.trust-grid h2,
.faq-layout h2,
.contact-card h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.split-section > div > p:not(.section-label),
.trust-grid > div > p:not(.section-label),
.faq-layout > div > p:not(.section-label),
.contact-card p:not(.section-label) {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.04rem;
}

.problem-grid,
.capability-grid,
.use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.problem-grid article,
.capability-grid article,
.use-grid article {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.problem-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.problem-grid h3,
.capability-grid h3,
.use-grid h3,
.trust-list h3,
.workflow-steps h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.07rem;
  line-height: 1.28;
}

.problem-grid p,
.capability-grid p,
.use-grid p,
.trust-list p,
.workflow-steps p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 44px;
}

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

.capability-grid article {
  box-shadow: none;
}

.workflow-steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.workflow-steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--brand-dark);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark .section-label {
  color: var(--brand-accent);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: start;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-list article {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.trust-list p {
  color: var(--white);
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 46px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 880;
}

.faq-list summary::after {
  content: "+";
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact-section {
  padding-top: 70px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--brand-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  color: var(--white);
}

.contact-card p:not(.section-label) {
  color: var(--white);
}

.contact-card .section-label {
  color: var(--brand);
  border-left-color: var(--brand);
}

.contact-email {
  margin: 18px 0 0;
}

.contact-email a {
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.contact-card .button-secondary {
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
}

.site-footer {
  padding: 36px 0 48px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: var(--ink);
  font-weight: 900;
}

.footer-grid p {
  max-width: 560px;
  margin: 12px 0 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 0.9rem;
  font-weight: 820;
}

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

.legal-hero {
  padding: 72px 0 44px;
}

.legal-heading {
  max-width: 860px;
}

.legal-heading h1 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.legal-heading p:not(.section-label) {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.legal-section {
  padding-top: 48px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 820px);
  gap: 48px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.legal-sidebar a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--muted-strong);
  font-weight: 850;
}

.legal-sidebar a:hover,
.legal-sidebar a.active {
  background: var(--brand-soft);
  color: var(--brand-strong);
}

.legal-document {
  min-width: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.legal-document h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.25;
}

.legal-document h2:first-of-type {
  margin-top: 0;
}

.legal-document p,
.legal-document address {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 1rem;
  font-style: normal;
  overflow-wrap: anywhere;
}

.legal-document a {
  color: var(--brand-strong);
  font-weight: 800;
}

.legal-date {
  color: var(--muted-strong);
  font-weight: 850;
}

.localized-copy.lang-de {
  display: none;
}

html[lang^="de"] .localized-copy.lang-en {
  display: none;
}

html[lang^="de"] .localized-copy.lang-de {
  display: block;
}

:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.38);
  outline-offset: 3px;
}

@media (max-width: 1060px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .split-section,
  .trust-grid,
  .faq-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .product-preview {
    max-width: 780px;
  }

  .legal-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .shell {
    padding: 0 18px;
  }

  .header-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .header-actions {
    width: auto;
    justify-content: flex-start;
  }

  .hero {
    padding: 52px 0;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11vw, 4rem);
  }

  .hero-proof,
  .preview-layout,
  .capability-grid,
  .trust-list,
  .use-grid,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .preview-documents {
    border-bottom: 1px solid var(--line);
  }

  .contact-actions,
  .footer-links {
    justify-content: flex-start;
  }

  .legal-document {
    padding: 26px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 58px 0;
  }

  .hero-actions,
  .header-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .header-actions {
    align-items: flex-start;
  }

  .button,
  .language-switch {
    width: 100%;
  }

  .header-actions .language-switch {
    width: auto;
  }

  .language-switch {
    justify-content: center;
  }

  .problem-grid,
  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .timeline-list li {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 24px;
  }

  .legal-sidebar {
    grid-template-columns: 1fr;
  }

  .legal-document {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal-ready [data-reveal],
  .reveal-ready [data-reveal-item] {
    opacity: 1;
    transform: none;
  }
}
