/* AIdentify Landing Page — scoped under .aidentify-landing */

/* Full-bleed warm-brown canvas, no edge frame */
html,
body {
  margin: 0;
  padding: 0;
  background: #211813;
}

.aidentify-landing {
  /* Design tokens — warm dark + orange, aligned to the product UI */
  --bg: #211813;
  --panel: #352820;
  --soft-panel: #2a2017;
  --cream: #fff8ec;
  --text: #fff8ec;
  --muted: #d8bf9b;
  --border: #503d32;
  --primary: #e8932b;
  --primary-dark: #f0a23a;
  --accent: #f5a623;
  --on-primary: #21140c;
  --success: #7fd1a0;

  --radius: 8px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --maxw: 1280px;
  --hero-maxw: 1280px;

  font-family: Poppins, "Segoe UI", Roboto, Arial, sans-serif;
  position: relative;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.aidentify-landing *,
.aidentify-landing *::before,
.aidentify-landing *::after {
  box-sizing: border-box;
}

.aidentify-landing h1,
.aidentify-landing h2,
.aidentify-landing h3,
.aidentify-landing p,
.aidentify-landing ol,
.aidentify-landing ul {
  margin: 0;
}

/* Robustness: long German compounds must wrap, never overflow their container */
.aidentify-landing h1,
.aidentify-landing h2,
.aidentify-landing h3,
.aidentify-landing p,
.aidentify-landing li,
.aidentify-landing td {
  overflow-wrap: break-word;
  hyphens: auto;
}

.aidentify-landing a {
  color: var(--primary);
  text-decoration: none;
}

.aidentify-landing .container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.aidentify-landing .narrow {
  max-width: 760px;
}

.aidentify-landing .centered {
  text-align: center;
}

/* ---------- Accessibility: visible keyboard focus + skip link ---------- */
/* Keyboard users must see where focus is; the outline follows each element's
   own border-radius, so pill buttons keep their shape. */
.aidentify-landing a:focus-visible,
.aidentify-landing button:focus-visible,
.aidentify-landing .btn:focus-visible,
.aidentify-landing .lang-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Skip link sits above the fixed header (z 50) and only enters the viewport
   when focused, so keyboard users can jump past the nav to the content. */
.aidentify-landing .skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 60;
  padding: 10px 16px;
  background: var(--primary);
  color: var(--on-primary);
  font-weight: 600;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.aidentify-landing .skip-link:focus {
  top: 12px;
}

/* ---------- Navigation (fixed, transparent over hero, darkens on scroll) ---------- */
.aidentify-landing .site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

/* Once the user scrolls, the header gains a subtle scrim so it stays legible
   over the content below (added by JS on scroll). */
.aidentify-landing .site-nav.is-scrolled {
  background: rgba(28, 20, 14, 0.86);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom-color: var(--border);
}

/* Product name + nav sit flush to the page edges, not in the centered container */
.aidentify-landing .site-nav .container {
  max-width: none;
}

.aidentify-landing .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.aidentify-landing .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
}

.aidentify-landing .brand-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}

.aidentify-landing .brand-name {
  font-size: 18px;
}

.aidentify-landing .nav-cluster {
  display: flex;
  align-items: center;
  gap: 24px;
}

.aidentify-landing .nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.aidentify-landing .nav-links a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.aidentify-landing .nav-links a:hover {
  color: var(--text);
}

.aidentify-landing .nav-cta {
  padding: 8px 0;
  background: transparent;
  border: none;
  color: var(--primary);
  font-weight: 600;
}

.aidentify-landing .nav-cta:hover {
  background: transparent;
  color: var(--primary-dark);
}

/* Hamburger — hidden on desktop, shown at the mobile breakpoint */
.aidentify-landing .nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.aidentify-landing .nav-toggle-bar {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Open state morphs the three bars into an X */
.aidentify-landing .site-nav.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.aidentify-landing .site-nav.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.aidentify-landing .site-nav.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.aidentify-landing .language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-left: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.aidentify-landing .lang-button {
  appearance: none;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  line-height: 1;
  cursor: pointer;
}

.aidentify-landing .lang-button:hover,
.aidentify-landing .lang-button.is-active {
  color: var(--primary-dark);
}

/* ---------- Hero (background image · text left · floating video card right) ---------- */
.aidentify-landing .hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(400px, 500px) minmax(740px, 1fr);
  grid-template-areas:
    "headline headline"
    "panel    media";
  align-items: center;
  justify-content: center;
  column-gap: clamp(40px, 4.5vw, 80px);
  row-gap: clamp(28px, 3.5vw, 52px);
  min-height: 720px;
  padding: 96px max(24px, calc(((100vw - var(--hero-maxw)) / 2) + 24px)) 72px;
  background: url("../img/hero-bg.svg") center / cover no-repeat, var(--bg);
  overflow: hidden;
}

/* Left-side scrim so the eyecatcher text stays readable over the image */
.aidentify-landing .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 14, 9, 0.72) 0%, rgba(20, 14, 9, 0.30) 42%, rgba(20, 14, 9, 0) 70%);
  pointer-events: none;
}

/* Seamless fade from the hero image into the solid page background */
.aidentify-landing .hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(33, 24, 19, 0) 0%, var(--bg) 100%);
  pointer-events: none;
}

.aidentify-landing .hero-panel {
  grid-area: panel;
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: transparent;
  color: var(--text);
}

.aidentify-landing .hero-panel,
.aidentify-landing .hero-panel h1,
.aidentify-landing .hero-panel p,
.aidentify-landing .hero-panel li {
  hyphens: none;
}

.aidentify-landing .hero-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.aidentify-landing .hero-title {
  grid-area: headline;
  margin: 0 auto;
  max-width: 960px;
  text-align: center;
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 700;
  line-height: 1.12;
  text-wrap: balance;
}

.aidentify-landing .hero-usp {
  margin: 0;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 500;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.92);
}

.aidentify-landing .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.aidentify-landing .hero-strip {
  list-style: none;
  margin: 6px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.aidentify-landing .hero-strip li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.aidentify-landing .strip-ico {
  display: inline-flex;
  color: var(--accent);
}

.aidentify-landing .strip-ico svg {
  width: 20px;
  height: 20px;
}

.aidentify-landing .hero-media {
  grid-area: media;
  position: relative;
  z-index: 1;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

/* Animated fallback gradient (visible until video plays) */
.aidentify-landing .hero-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #20170b 0%, #5a3d12 45%, #e8932b 100%);
  background-size: 200% 200%;
  animation: heroShift 18s ease-in-out infinite;
}

@keyframes heroShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.aidentify-landing .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.aidentify-landing .hero-media.video-active .hero-video {
  opacity: 1;
}

/* ---------- Buttons ---------- */
.aidentify-landing .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.aidentify-landing .btn:active {
  transform: translateY(1px);
}

.aidentify-landing .btn-primary {
  background: var(--primary);
  color: var(--on-primary);
}

.aidentify-landing .btn-primary:hover {
  background: var(--primary-dark);
}

.aidentify-landing .btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  border-color: var(--border);
}

.aidentify-landing .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: var(--muted);
}

.aidentify-landing .btn-hero-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.4);
}

.aidentify-landing .btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text);
}

.aidentify-landing .btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* ---------- Sections ---------- */
.aidentify-landing .section {
  padding-block: 88px;
}

.aidentify-landing .section-title {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.aidentify-landing .section-lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
}

.aidentify-landing .section-lead.centered {
  margin-inline: auto;
}

.aidentify-landing .section-problem {
  background: transparent;
}

/* Pain chips */
.aidentify-landing .pain-chips {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.aidentify-landing .pain-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.aidentify-landing .pain-ico {
  display: inline-flex;
  color: var(--primary);
}

.aidentify-landing .pain-ico svg {
  width: 20px;
  height: 20px;
}

/* Feature icon tiles */
.aidentify-landing .feature-ico {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  color: var(--primary);
  background: rgba(240, 162, 58, 0.12);
}

.aidentify-landing .feature-ico svg {
  width: 24px;
  height: 24px;
}

/* ---------- Cards ---------- */
.aidentify-landing .cards {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.aidentify-landing .two-col {
  grid-template-columns: repeat(2, 1fr);
}

.aidentify-landing .three-col {
  grid-template-columns: repeat(3, 1fr);
}

/* ---------- Automation overview ---------- */
.aidentify-landing .automation-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.aidentify-landing .automation-column,
.aidentify-landing .bento-panel {
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.aidentify-landing .automation-column:hover,
.aidentify-landing .bento-panel:hover {
  border-color: #5a4628;
  box-shadow: var(--shadow-md);
}

.aidentify-landing .automation-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.aidentify-landing .automation-column-title {
  color: var(--primary-dark);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.aidentify-landing .automation-column-text,
.aidentify-landing .automation-column-note {
  color: var(--muted);
  font-size: 14px;
}

.aidentify-landing .automation-summary-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.aidentify-landing .automation-summary-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
}

.aidentify-landing .bento-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.aidentify-landing .bento-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  margin-bottom: 16px;
}

.aidentify-landing .bento-head .bento-title { margin-bottom: 0; }

.aidentify-landing .bento-note,
.aidentify-landing .bento-foot {
  color: var(--muted);
  font-size: 13.5px;
}

.aidentify-landing .bento-foot { margin-top: 12px; }

.aidentify-landing .sr-state {
  color: var(--muted);
  font-weight: 400;
}

/* Chat panel */
.aidentify-landing .chat-thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aidentify-landing .chat-msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.5;
}

.aidentify-landing .chat-user {
  align-self: flex-end;
  background: var(--cream);
  color: #2a2113;
  border-bottom-right-radius: 4px;
}

.aidentify-landing .chat-bot {
  align-self: flex-start;
  background: var(--soft-panel);
  border: 1px solid var(--border);
  color: var(--text);
  border-bottom-left-radius: 4px;
}

.aidentify-landing .chat-bot p { margin: 0 0 10px; }

.aidentify-landing .source-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.aidentify-landing .source-chip {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--primary-dark);
  background: var(--soft-panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 9px;
}

.aidentify-landing .chat-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
}

.aidentify-landing .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.aidentify-landing .dot-done { background: var(--success); }

/* Automation flow */
.aidentify-landing .automation-flow {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
}

.aidentify-landing .automation-step {
  min-width: 0;
  background: var(--soft-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.aidentify-landing .automation-step strong,
.aidentify-landing .automation-step span {
  display: block;
}

.aidentify-landing .automation-step strong {
  color: var(--text);
  font-size: 15px;
  margin: 7px 0 6px;
}

.aidentify-landing .automation-step span:last-child {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.aidentify-landing .flow-kicker {
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.aidentify-landing .automation-rule-snippet {
  margin: 0;
}

/* Status track */
.aidentify-landing .status-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aidentify-landing .status-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
}

.aidentify-landing .status-ico {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
}

.aidentify-landing .is-done .status-ico { background: rgba(127, 209, 160, 0.16); color: var(--success); }
.aidentify-landing .is-active .status-ico { background: rgba(240, 162, 58, 0.16); color: var(--primary); }
.aidentify-landing .is-todo { color: var(--muted); }
.aidentify-landing .is-todo .status-ico { border: 1px solid var(--border); color: var(--muted); }

/* Document mini-table */
.aidentify-landing .doc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.aidentify-landing .doc-table th {
  text-align: left;
  font-weight: 600;
  color: var(--muted);
  padding: 0 8px 8px 0;
  border-bottom: 1px solid var(--border);
}

.aidentify-landing .doc-table td {
  padding: 9px 8px 9px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}

.aidentify-landing .doc-table tr:last-child td { border-bottom: none; }

.aidentify-landing .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  padding: 3px 10px;
  white-space: nowrap;
}

.aidentify-landing .tag-done { background: rgba(127, 209, 160, 0.16); color: var(--success); }
.aidentify-landing .tag-active { background: rgba(240, 162, 58, 0.16); color: var(--primary); }

/* Rule snippet */
.aidentify-landing .rule-snippet {
  background: var(--soft-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text);
}

.aidentify-landing .rule-kw {
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.02em;
}

.aidentify-landing .rule-then {
  display: block;
  margin-top: 4px;
}

/* Mail cue */
.aidentify-landing .mail-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.aidentify-landing .mail-from { font-size: 13px; color: var(--muted); }
.aidentify-landing .mail-subj { font-size: 15px; font-weight: 600; color: var(--text); }

.aidentify-landing .mail-attach {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
}

.aidentify-landing .card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.aidentify-landing .card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.aidentify-landing .card-text {
  color: var(--muted);
  font-size: 15px;
}

/* ---------- Product processing mockup ---------- */
.aidentify-landing .processing-mockup {
  margin-top: 26px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.aidentify-landing .mockup-filters {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 14px;
}

.aidentify-landing .mockup-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.aidentify-landing .mockup-control {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--primary);
  border-radius: 6px;
  padding: 10px 12px;
  color: #2a2113;
  font-size: 14px;
  font-weight: 500;
}

.aidentify-landing .mockup-control-icon {
  color: #6e4a22;
  font-size: 16px;
}

.aidentify-landing .mockup-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 18px;
}

.aidentify-landing .mockup-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
}

.aidentify-landing .mockup-check::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 1px solid var(--primary);
  border-radius: 4px;
  background: var(--cream);
}

.aidentify-landing .mockup-check.is-on::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  background: var(--primary);
  color: #2a2113;
  font-size: 12px;
  font-weight: 700;
}

.aidentify-landing .mockup-table-head {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 0.8fr 0.8fr 0.8fr 0.8fr 0.6fr;
  gap: 16px;
  margin-top: 20px;
  padding: 0 10px 10px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
}

.aidentify-landing .mockup-processing-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

.aidentify-landing .mockup-processing-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  font-size: 15px;
  margin-bottom: 12px;
}

.aidentify-landing .mockup-processing-head span {
  color: var(--muted);
  font-size: 12.5px;
  white-space: nowrap;
}

.aidentify-landing .mockup-processing-body {
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 14px;
  color: var(--text);
}

.aidentify-landing .mockup-processing-body > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.aidentify-landing .mockup-processing-body > div span {
  color: var(--muted);
  font-size: 13px;
}

.aidentify-landing .mockup-status-chain {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  color: var(--primary-dark);
  font-size: 13.5px;
}

.aidentify-landing .mockup-status-chain li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.aidentify-landing .mockup-status-chain li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  font-size: 10px;
}

.aidentify-landing .mockup-analyzing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--primary);
  font-size: 13.5px;
  font-weight: 600;
}

.aidentify-landing .mockup-analyzing::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid rgba(240, 162, 58, 0.3);
  border-top-color: var(--primary);
  border-radius: 50%;
}

/* ---------- Trust section ---------- */
.aidentify-landing .section-trust {
  background: transparent;
  color: var(--text);
}

.aidentify-landing .trust-title {
  color: var(--text);
  margin-bottom: 40px;
}

/* Trust reads as one unified panel split by hairlines (1px gaps reveal the
   container colour) — deliberately not the boxed card grid used in Produkt
   and Wissen, so the three sections don't repeat the same treatment. */
.aidentify-landing .trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.aidentify-landing .trust-item {
  background: var(--bg);
  padding: 24px 22px;
}

.aidentify-landing .trust-item-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--accent);
}

.aidentify-landing .trust-item p {
  color: var(--muted);
  font-size: 14px;
}

/* Icon sits beside the text (horizontal), not stacked above it as in the cards */
.aidentify-landing .trust-item--icon {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "ico title"
    "ico text";
  column-gap: 12px;
  row-gap: 4px;
  align-items: start;
}

.aidentify-landing .trust-item--icon .ti-ico {
  grid-area: ico;
  display: inline-flex;
  align-self: start;
  color: var(--accent);
}

.aidentify-landing .trust-item--icon .ti-ico svg {
  width: 24px;
  height: 24px;
}

.aidentify-landing .trust-item--icon .trust-item-title {
  grid-area: title;
}

.aidentify-landing .trust-item--icon p {
  grid-area: text;
}

/* ---------- Process chain ---------- */
.aidentify-landing .process-chain {
  list-style: none;
  padding: 0;
  margin: 40px 0 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}

.aidentify-landing .process-step {
  flex: 1 1 0;
  min-width: 150px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.aidentify-landing .process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-weight: 700;
  z-index: 1;
}

.aidentify-landing .step-index {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--primary);
  color: var(--on-primary);
  font-weight: 700;
  font-size: 14px;
}

.aidentify-landing .step-name {
  font-weight: 600;
}

/* ---------- CTA ---------- */
.aidentify-landing .section-cta {
  background: transparent;
}

.aidentify-landing .legal-page {
  min-height: 100vh;
  padding-top: 72px;
}

.aidentify-landing .legal-hero {
  padding-block: 96px 44px;
  background: var(--bg);
}

.aidentify-landing .legal-container {
  max-width: 900px;
}

.aidentify-landing .legal-title {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 18px;
}

.aidentify-landing .legal-content-section {
  padding-block: 32px 96px;
}

.aidentify-landing .legal-card {
  margin-top: 18px;
}

.aidentify-landing .legal-card:first-child {
  margin-top: 0;
}

.aidentify-landing .legal-card p + p {
  margin-top: 18px;
}

.aidentify-landing .cta-layout {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 760px);
  align-items: center;
  justify-content: center;
  gap: clamp(48px, 7vw, 96px);
}

.aidentify-landing .cta-portrait-wrap {
  display: flex;
  justify-content: center;
  width: clamp(190px, 20vw, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(240, 162, 58, 0.38);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  background: var(--panel);
}

.aidentify-landing .cta-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.72) translateY(13%);
  filter: none;
}

.aidentify-landing .cta-content {
  text-align: center;
}

.aidentify-landing .cta-content .section-lead {
  margin-inline: auto;
}

.aidentify-landing .cta-title {
  margin-bottom: 16px;
}

.aidentify-landing .section-cta .btn {
  margin-top: 28px;
}

.aidentify-landing .cta-contact {
  margin-top: 18px;
  font-size: 15px;
  color: var(--muted);
}

.aidentify-landing .cta-contact a {
  color: var(--primary-dark);
  font-weight: 600;
  word-break: break-word;
}

.aidentify-landing .cta-address {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14.5px;
  font-style: normal;
  line-height: 1.7;
}

.aidentify-landing .cta-address strong {
  color: var(--text);
  font-weight: 600;
}

.aidentify-landing .cta-address a {
  color: var(--primary-dark);
  font-weight: 600;
}

/* ---------- Footer ---------- */
.aidentify-landing .site-footer {
  background: #14100a;
  border-top: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.7);
  padding-block: 28px;
}

.aidentify-landing .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.aidentify-landing .footer-brand {
  font-weight: 600;
  color: var(--text);
}

.aidentify-landing .footer-links {
  display: flex;
  gap: 24px;
}

.aidentify-landing .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.aidentify-landing .footer-links a:hover {
  color: var(--text);
}

.aidentify-landing .footer-legal {
  margin-top: 12px;
}

.aidentify-landing .footer-legal-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Integrations logo grid ---------- */
.aidentify-landing .module-integrations {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.aidentify-landing .module-integrations-title {
  color: var(--primary-dark);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.aidentify-landing .module-integrations-lead {
  max-width: 780px;
  color: var(--muted);
  font-size: 15px;
}

.aidentify-landing .integration-groups {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.aidentify-landing .integration-group-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 14px;
}

.aidentify-landing .integration-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.aidentify-landing .logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
}

.aidentify-landing .logo-chip-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.aidentify-landing .logo-chip-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.aidentify-landing .logo-chip:hover .logo-chip-ico img,
.aidentify-landing .logo-chip:focus-within .logo-chip-ico img {
  opacity: 1;
}

.aidentify-landing .logo-chip-generic {
  display: inline-flex;
  color: var(--primary);
}

.aidentify-landing .logo-chip-generic svg {
  width: 20px;
  height: 20px;
}

/* ---------- Sections are always visible (no scroll-gated reveal) ---------- */
.aidentify-landing .reveal {
  opacity: 1;
  transform: none;
}

/* Safe, one-shot hero entrance on load (not scroll-dependent, so it can never
   leave content blank). Disabled under reduced motion. */
@media (prefers-reduced-motion: no-preference) {
  .aidentify-landing .hero-title,
  .aidentify-landing .hero-panel > * {
    animation: hero-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .aidentify-landing .hero-title { animation-delay: 0.05s; }
  .aidentify-landing .hero-usp { animation-delay: 0.14s; }
  .aidentify-landing .hero-actions { animation-delay: 0.23s; }
  .aidentify-landing .hero-strip { animation-delay: 0.32s; }
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .aidentify-landing .hero {
    grid-template-columns: minmax(460px, 560px) minmax(420px, 1fr);
    column-gap: 40px;
    padding-inline: 32px;
  }
  .aidentify-landing .hero-title {
    font-size: clamp(36px, 4.6vw, 50px);
  }
  .aidentify-landing .nav-links {
    gap: 18px;
  }
  .aidentify-landing .nav-links a {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .aidentify-landing .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "headline"
      "panel"
      "media";
    row-gap: 40px;
    min-height: 0;
    padding: 88px 24px 56px;
  }
  .aidentify-landing .hero-title {
    max-width: 100%;
    text-align: left;
  }
  .aidentify-landing .hero-panel {
    max-width: 680px;
  }
  .aidentify-landing .hero-media {
    justify-self: start;
    width: min(100%, 680px);
  }
  .aidentify-landing .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .aidentify-landing .mockup-filters {
    grid-template-columns: 1fr 1fr;
  }
  .aidentify-landing .mockup-table-head {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .aidentify-landing .mockup-table-head span:nth-child(n+5) {
    display: none;
  }
  .aidentify-landing .automation-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  /* Section links collapse into a toggled dropdown; the Kontakt CTA and
     language switch stay in the bar so the next step is always reachable. */
  .aidentify-landing .nav-toggle { display: inline-flex; }
  .aidentify-landing .nav-cluster { gap: 14px; }
  .aidentify-landing .site-nav.nav-open {
    background: rgba(28, 20, 14, 0.97);
    border-bottom-color: var(--border);
  }
  .aidentify-landing .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px 24px 14px;
    background: rgba(28, 20, 14, 0.97);
    backdrop-filter: saturate(160%) blur(8px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .aidentify-landing .site-nav.nav-open .nav-links {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .aidentify-landing .nav-links a {
    display: block;
    padding: 14px 2px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .aidentify-landing .nav-links a:last-child { border-bottom: 0; }
  .aidentify-landing .language-switch { gap: 6px; }
  .aidentify-landing .two-col { grid-template-columns: 1fr; }
  .aidentify-landing .three-col { grid-template-columns: 1fr; }
  .aidentify-landing .mockup-filters {
    grid-template-columns: 1fr;
  }
  .aidentify-landing .mockup-table-head {
    display: none;
  }
  .aidentify-landing .mockup-processing-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .aidentify-landing .trust-grid { grid-template-columns: 1fr; }
  .aidentify-landing .process-step:not(:last-child)::after { content: none; }
  .aidentify-landing .section { padding-block: 64px; }
  .aidentify-landing .cta-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .aidentify-landing .cta-portrait-wrap {
    width: min(58vw, 220px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aidentify-landing .hero-fallback { animation: none; }
  .aidentify-landing .reveal { transition: none; opacity: 1; transform: none; }
  .aidentify-landing .skip-link { transition: none; }
}
