:root {
  color-scheme: light;
  --ink: #111827;
  --ink-soft: #2f3a4a;
  --muted: #6b7280;
  --line: #d1d5db;
  --paper: #f3f4f6;
  --surface: #fbfbfc;
  --night: #111827;
  --night-2: #1f2937;
  --blue: #4b5563;
  --blue-dark: #374151;
  --cyan: #6b7280;
  --green: #4b5563;
  --amber: #71717a;
  --rose: #52525b;
  --shadow-soft: 0 18px 55px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 14px 35px rgba(15, 23, 42, 0.08);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #f9fafb 0%, #f3f4f6 50%, #f3f4f6 100%);
  color: var(--ink);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  padding: 10px 14px;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 56px);
  color: #ffffff;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid rgba(217, 227, 239, 0.95);
  background: rgba(255, 255, 255, 0.93);
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(75, 85, 99, 0.86), rgba(55, 65, 81, 0.84)),
    rgba(255, 255, 255, 0.13);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 28px rgba(2, 8, 23, 0.16);
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  border-color: #d1d5db;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand-copy small {
  margin-top: 2px;
  color: currentColor;
  font-size: 0.75rem;
  opacity: 0.7;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: 4px;
}

.site-nav a {
  white-space: nowrap;
  border-radius: 6px;
  padding: 10px 11px;
  color: currentColor;
  font-size: 0.88rem;
  font-weight: 750;
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a:focus-visible {
  background: #e5e7eb;
  color: var(--blue-dark);
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: #ffffff;
  color: var(--ink);
  opacity: 1;
  box-shadow: 0 10px 24px rgba(2, 8, 23, 0.12);
}

.site-header.is-scrolled .site-nav .nav-cta,
.site-header.is-open .site-nav .nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: currentColor;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-open .menu-toggle {
  border-color: #d1d5db;
  background: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  min-height: 90vh;
  align-items: end;
  overflow: hidden;
  background-image: url("assets/platform-hero.png");
  background-position: 57% center;
  background-size: cover;
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 15, 20, 0.94) 0%, rgba(12, 15, 20, 0.78) 43%, rgba(12, 15, 20, 0.3) 100%),
    linear-gradient(0deg, rgba(12, 15, 20, 0.9) 0%, rgba(12, 15, 20, 0.18) 52%, rgba(12, 15, 20, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 148px 0 42px;
}

.hero-content::before,
.service-hero::before,
.status-hero::before,
.admin-hero::before {
  display: block;
  width: 96px;
  height: 4px;
  border-radius: 999px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--amber));
  content: "";
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  color: #d1d5db;
  backdrop-filter: blur(12px);
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero h1 {
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
}

.hero-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(241, 245, 249, 0.93);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 12px 20px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 15px 34px rgba(15, 23, 42, 0.14);
  outline: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: none;
}

.hero-status {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(11, 18, 32, 0.76);
  box-shadow: 0 24px 70px rgba(2, 8, 23, 0.26);
  backdrop-filter: blur(16px);
}

.hero-status-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 112px;
  padding: 18px;
  overflow: hidden;
}

.hero-status-card::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
}

.hero-status-card:nth-child(2)::after {
  background: var(--cyan);
}

.hero-status-card:nth-child(3)::after {
  background: var(--amber);
}

.hero-status-card:nth-child(4)::after {
  background: var(--green);
}

.hero-status-card + .hero-status-card {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-status-card:hover,
.hero-status-card:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.hero-status span,
.platform-top span,
.process-grid span {
  display: block;
  color: #d1d5db;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-status strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  padding-right: 42px;
  font-size: 1rem;
}

.section {
  padding: clamp(68px, 9vw, 112px) clamp(20px, 4vw, 56px);
}

.intro-section,
.audience-section,
.process-section {
  background: transparent;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  width: min(1120px, 100%);
  margin: 0 auto 34px;
}

.split-heading h2,
.operations-copy h2,
.faq-layout h2,
.contact-copy h2,
.legal-page h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.split-heading h2 {
  text-wrap: balance;
}

.split-heading p,
.operations-copy p,
.contact-copy p,
.legal-page p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.service-card,
.platform-card,
.audience-grid article,
.process-grid article,
.contact-panel,
.legal-card {
  border: 1px solid rgba(217, 227, 239, 0.9);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 24px;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.service-card::before,
.audience-grid article::before,
.process-grid article::before,
.service-detail-grid article::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--blue);
  content: "";
}

.service-card:nth-child(2)::before,
.process-grid article:nth-child(2)::before {
  background: var(--cyan);
}

.service-card:nth-child(3)::before,
.process-grid article:nth-child(3)::before {
  background: var(--amber);
}

.service-card:nth-child(4)::before,
.audience-grid article:nth-child(4)::before {
  background: var(--green);
}

.service-card.featured {
  border-color: rgba(75, 85, 99, 0.32);
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
}

.service-card:hover,
.service-card:focus-visible,
.platform-card:hover,
.platform-card:focus-visible {
  border-color: #9ca3af;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  transform: translateY(-2px);
  outline: none;
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: #e5e7eb;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card:nth-child(2) .service-icon {
  background: #f3f4f6;
  color: var(--green);
}

.service-card:nth-child(3) .service-icon {
  background: #f4f4f5;
  color: var(--amber);
}

.service-card:nth-child(4) .service-icon {
  background: #eef2f7;
  color: var(--blue-dark);
}

.service-card h3,
.platform-card h3,
.audience-grid h3,
.process-grid h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.18;
}

.service-card p,
.platform-card p,
.audience-grid p,
.process-grid p,
.contact-panel p,
.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.service-card li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
}

.service-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 22px;
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 900;
}

.platforms-section,
.faq-section {
  background: #ffffff;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.platform-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: clamp(24px, 4vw, 40px);
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.platform-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 38%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0));
  content: "";
}

.platform-card > * {
  position: relative;
  z-index: 1;
}

.dark-card {
  background:
    linear-gradient(135deg, #111827 0%, #1f2937 58%, #374151 140%);
  color: #ffffff;
}

.dark-card h3 {
  color: #ffffff;
}

.dark-card p {
  color: #cbd5e1;
}

.light-card {
  background:
    linear-gradient(135deg, rgba(75, 85, 99, 0.1), rgba(255, 255, 255, 0) 55%),
    #f4f5f7;
}

.support-card {
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.08), rgba(255, 255, 255, 0) 58%),
    #ffffff;
}

.platform-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.36);
  padding-bottom: 18px;
}

.platform-top small {
  color: inherit;
  font-weight: 800;
  opacity: 0.68;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 30px;
}

.tag-list span {
  border: 1px solid rgba(148, 163, 184, 0.42);
  border-radius: 999px;
  padding: 8px 11px;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 800;
}

.operations-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(135deg, #111827 0%, #1f2937 64%, #374151 150%);
  color: #ffffff;
}

.operations-section .section-kicker {
  color: #d1d5db;
}

.operations-copy h2 {
  color: #ffffff;
}

.operations-copy p {
  margin-top: 18px;
  color: #c8d3e2;
}

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

.operations-grid article {
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  padding: 20px;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.operations-grid strong,
.operations-grid span {
  display: block;
}

.operations-grid strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.operations-grid span {
  margin-top: 12px;
  color: #cbd5e1;
  font-size: 0.94rem;
}

.audience-grid,
.process-grid {
  display: grid;
  gap: 20px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

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

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

.audience-grid article,
.process-grid article {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.audience-grid h3,
.process-grid h3 {
  margin-top: 0;
}

.process-grid span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #e5e7eb;
  color: var(--blue-dark);
}

.process-grid h3 {
  margin-top: 18px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  width: min(1120px, 100%);
  margin: 0 auto;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq-list details[open],
.faq-list details:hover {
  border-color: #9ca3af;
}

.status-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.compact-heading {
  margin-bottom: 24px;
}

.status-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.status-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  min-height: 170px;
  border: 1px solid rgba(217, 227, 239, 0.9);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.status-card:hover,
.status-card:focus-visible {
  border-color: #9ca3af;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.status-dot {
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.status-yellow .status-dot {
  background: #f59e0b;
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.13);
}

.status-red .status-dot {
  background: #dc2626;
  box-shadow: 0 0 0 6px rgba(220, 38, 38, 0.12);
}

.status-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}

.status-topline strong,
.status-topline span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-topline span {
  color: var(--muted);
}

.status-card h3 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.18;
}

.status-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.overall-status-card {
  min-height: 190px;
  align-items: center;
}

.overall-status-card h3 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.status-card-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.status-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
  padding-top: 94px;
}

.status-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0 34px;
}

.status-hero h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 6rem);
}

.status-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.status-detail-section {
  padding: 0 clamp(20px, 4vw, 56px) clamp(64px, 8vw, 96px);
}

.status-detail-listing {
  display: grid;
  gap: 16px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.status-detail-card {
  border: 1px solid rgba(217, 227, 239, 0.9);
  border-radius: var(--radius);
  background: #ffffff;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow-card);
  scroll-margin-top: 110px;
}

.status-detail-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.status-detail-head p,
.status-detail-head strong {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-detail-head h2 {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.05;
}

.status-detail-card > p {
  max-width: 820px;
  margin: 18px 0 0 28px;
  color: var(--muted);
}

.status-detail-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0 28px;
}

.status-detail-list div {
  border: 1px solid #dbe4f0;
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
}

.status-detail-list dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-detail-list dd {
  margin: 8px 0 0;
  color: var(--ink);
}

.status-detail-list a {
  color: var(--blue-dark);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.admin-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
  padding: 116px clamp(16px, 4vw, 56px) 56px;
}

.admin-hero,
.admin-login,
.admin-dashboard {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.admin-hero {
  padding: 30px 0 26px;
}

.admin-hero h1 {
  max-width: 860px;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 6rem);
}

.admin-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 18px;
}

.admin-card {
  border: 1px solid rgba(217, 227, 239, 0.9);
  border-radius: var(--radius);
  background: #ffffff;
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-card);
}

.admin-login .admin-card {
  width: min(460px, 100%);
}

.admin-card h2,
.admin-card h3 {
  margin: 0;
  color: var(--ink);
}

.admin-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.admin-card h3 {
  font-size: 1rem;
}

.admin-card label {
  display: grid;
  gap: 7px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.admin-card input,
.admin-card textarea,
.admin-card select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  padding: 11px 12px;
  color: var(--ink);
}

.admin-card textarea {
  resize: vertical;
}

.admin-card .button {
  margin-top: 18px;
}

.admin-card-header {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.admin-card-header .button {
  margin-top: 0;
}

.button.ghost-on-light {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.button.primary-on-light {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.button.primary-on-light:hover,
.button.primary-on-light:focus-visible {
  background: var(--ink-soft);
}

.status-admin-list {
  display: grid;
  gap: 14px;
}

.status-admin-item {
  min-width: 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin: 0;
  padding: 16px;
}

.status-admin-item legend {
  padding: 0 6px;
  color: var(--ink);
  font-weight: 900;
}

.admin-message {
  min-height: 1.5em;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.traffic-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.traffic-summary article {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
}

.traffic-summary span,
.traffic-summary strong {
  display: block;
}

.traffic-summary span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.traffic-summary strong {
  margin-top: 5px;
  color: var(--ink);
  font-size: 1.6rem;
}

.traffic-table-wrap {
  margin-top: 20px;
  overflow-x: auto;
}

.traffic-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.traffic-table th,
.traffic-table td {
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
  text-align: left;
  vertical-align: top;
}

.traffic-table th:last-child,
.traffic-table td:last-child {
  text-align: right;
}

.booking-section {
  background: #ffffff;
}

.service-booking-section {
  padding-top: clamp(42px, 6vw, 72px);
}

.booking-form {
  width: min(1120px, 100%);
  border: 1px solid rgba(209, 213, 219, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow-card);
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.booking-form label,
.booking-message-field {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 850;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  padding: 12px 13px;
  color: var(--ink);
}

.booking-form textarea {
  resize: vertical;
}

.booking-message-field {
  margin-top: 14px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}

.booking-message {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.booking-admin-card {
  grid-column: 1 / -1;
}

.booking-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 180px));
  gap: 10px;
  margin-bottom: 18px;
}

.booking-summary article,
.booking-admin-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}

.booking-summary article {
  padding: 14px;
}

.booking-summary span,
.booking-summary strong {
  display: block;
}

.booking-summary span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-summary strong {
  margin-top: 5px;
  color: var(--ink);
  font-size: 1.6rem;
}

.booking-admin-list {
  display: grid;
  gap: 14px;
}

.booking-admin-item {
  padding: 18px;
}

.booking-admin-head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: start;
  justify-content: space-between;
}

.booking-admin-head strong,
.booking-admin-head span {
  display: block;
}

.booking-admin-head strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.booking-admin-head span {
  color: var(--muted);
  font-weight: 850;
}

.booking-status {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: #f9fafb;
  color: var(--ink-soft) !important;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.booking-admin-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
}

.booking-admin-details div {
  min-width: 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px;
}

.booking-admin-details dt {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-admin-details dd {
  margin: 7px 0 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.booking-admin-item > p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.booking-admin-controls,
.booking-mail-controls {
  display: grid;
  gap: 12px;
  align-items: end;
  margin-top: 16px;
}

.booking-admin-controls {
  grid-template-columns: minmax(160px, 0.3fr) minmax(0, 1fr) auto;
}

.booking-mail-controls {
  grid-template-columns: minmax(160px, 1fr) auto;
  border-top: 1px solid #eef2f7;
  padding-top: 14px;
}

.booking-admin-controls label,
.booking-mail-controls label {
  margin-top: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(64px, 8vw, 96px) clamp(20px, 4vw, 56px);
  background:
    linear-gradient(135deg, #111827 0%, #1f2937 62%, #374151 150%);
  color: #ffffff;
}

.contact-section .section-kicker {
  color: #d1d5db;
}

.contact-copy {
  max-width: 820px;
}

.contact-copy h2 {
  color: #ffffff;
}

.contact-copy p {
  margin-top: 18px;
  color: #cbd5e1;
}

.contact-panel {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.96);
  padding: 24px;
  color: var(--ink);
}

.contact-panel strong {
  color: var(--ink);
  font-size: 1.15rem;
}

.contact-panel .button {
  width: 100%;
  margin-top: 20px;
}

.site-footer {
  background:
    linear-gradient(180deg, #111827 0%, #1f2937 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(42px, 6vw, 72px) clamp(20px, 4vw, 56px) 28px;
}

.footer-action-band {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 auto clamp(30px, 5vw, 52px);
  padding: clamp(18px, 3vw, 26px);
}

.footer-action-band span,
.footer-contact-link span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-action-band strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.footer-action-band a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ffffff;
  padding: 12px 18px;
  color: var(--ink);
  font-weight: 950;
  white-space: nowrap;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(160px, 0.65fr));
  gap: clamp(24px, 4vw, 52px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-brand {
  max-width: 420px;
}

.footer-brand-name {
  display: grid;
  width: fit-content;
  gap: 4px;
}

.footer-brand-name strong,
.footer-column > strong {
  display: block;
  color: #ffffff;
}

.footer-brand-name strong {
  font-size: 1.22rem;
}

.footer-brand-name span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  font-weight: 850;
}

.footer-brand p {
  max-width: 34rem;
  margin: 18px 0 0;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-style: normal;
}

.footer-column > strong {
  margin-bottom: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-contact-link {
  display: grid;
  width: min(100%, 290px) !important;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 11px 12px;
}

.footer-contact-link strong {
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible,
.footer-action-band a:hover,
.footer-action-band a:focus-visible {
  color: #ffffff;
  outline: none;
}

.footer-action-band a:hover,
.footer-action-band a:focus-visible {
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  margin: clamp(32px, 5vw, 56px) auto 0;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.62);
  overflow-wrap: anywhere;
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
  padding: 120px clamp(20px, 4vw, 56px) 56px;
}

.legal-card {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
}

.legal-card h2 {
  margin: 32px 0 0;
  color: var(--ink);
  font-size: 1.35rem;
}

.legal-card p {
  margin-top: 12px;
}

.legal-note {
  border-left: 4px solid var(--blue);
  background: #f3f4f6;
  padding: 14px 16px;
}

.service-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
  padding-top: 92px;
}

.service-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 118px) 0 44px;
}

.service-hero h1 {
  max-width: 920px;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 6.4rem);
}

.service-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.service-hero .button {
  margin-top: 30px;
}

.service-detail {
  padding: 0 clamp(20px, 4vw, 56px) clamp(64px, 8vw, 96px);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.service-detail-grid article,
.service-cta {
  position: relative;
  border: 1px solid rgba(217, 227, 239, 0.9);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.service-detail-grid article {
  padding: clamp(22px, 4vw, 34px);
}

.service-detail-grid h2,
.service-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.included-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
}

.included-list li::before {
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
}

.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto clamp(64px, 8vw, 96px);
  border-color: rgba(75, 85, 99, 0.22);
  background:
    linear-gradient(135deg, rgba(243, 244, 246, 0.94), rgba(255, 255, 255, 0.72)),
    #ffffff;
  padding: clamp(24px, 4vw, 38px);
}

.service-cta p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
}

@media (max-width: 1320px) {
  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: clamp(16px, 4vw, 32px);
    left: clamp(16px, 4vw, 32px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    padding: 8px;
    color: var(--ink);
    box-shadow: var(--shadow-soft);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 15, 20, 0.96) 0%, rgba(12, 15, 20, 0.82) 48%, rgba(12, 15, 20, 0.42) 100%),
      linear-gradient(0deg, rgba(12, 15, 20, 0.92) 0%, rgba(12, 15, 20, 0.25) 54%, rgba(12, 15, 20, 0.5) 100%);
  }

  .hero-content {
    width: min(720px, calc(100% - 40px));
    margin-left: clamp(20px, 4vw, 56px);
    margin-right: auto;
  }

  h1 {
    font-size: clamp(4rem, 8vw, 6.4rem);
  }

  .hero-lead {
    max-width: 650px;
    font-size: 1.16rem;
  }

  .hero-status,
  .service-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-status-card + .hero-status-card {
    border-left: 0;
  }

  .hero-status-card:nth-child(2n) {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
  }

  .hero-status-card:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }
}

@media (max-width: 960px) {

  .split-heading,
  .platform-grid,
  .operations-section,
  .faq-layout,
  .contact-section,
  .service-detail-grid,
  .service-cta,
  .status-grid,
  .status-detail-list,
  .admin-grid,
  .booking-form-grid,
  .booking-admin-details,
  .booking-admin-controls,
  .booking-mail-controls,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 26px;
  }

  .service-grid,
  .audience-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 5rem);
  }

  .hero-status,
  .operations-grid {
    grid-template-columns: 1fr;
  }

  .hero-status {
    width: calc(100% - 32px);
  }

  .hero-status-card + .hero-status-card {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .hero-status-card:nth-child(2n) {
    border-left: 0;
  }

  .section,
  .operations-section,
  .contact-section,
  .service-detail,
  .legal-page,
  .admin-page,
  .status-detail-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .status-hero {
    width: calc(100% - 32px);
  }

  .status-detail-head {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .status-detail-head strong {
    grid-column: 2;
  }

  .status-detail-card > p,
  .status-detail-list {
    margin-left: 0;
  }

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

  .booking-summary {
    grid-template-columns: 1fr;
  }

  .service-hero,
  .service-cta {
    width: calc(100% - 32px);
  }

  .button {
    width: 100%;
  }

  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .footer-action-band {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-action-band a {
    width: 100%;
  }

  .footer-column a {
    width: 100%;
  }

  .footer-contact-link {
    width: 100% !important;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.brand-logo {
  height: 48px;   /* fixe Größe */
  width: auto;
  display: block;
}

/* default: HOME oben */
.site-header.is-home .logo-light {
  display: block;
}

.site-header.is-home .logo-dark {
  display: none;
}

/* scroll oder andere Seiten */
.site-header.is-scrolled .logo-light {
  display: none;
}

.site-header.is-scrolled .logo-dark {
  display: block;
}