/*
Theme Name: Agent Coming Soon
Theme URI: https://example.com/
Author: Custom
Description: Moderner, responsiver Onepager für eine Website im Aufbau mit integriertem Impressum.
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: agent-coming-soon
*/

:root {
  --navy: #0c2755;
  --blue: #124ca0;
  --azure: #0877dc;
  --cyan: #1dbcd2;
  --green: #80c342;
  --yellow: #f4c535;
  --paper: #f5f8fc;
  --white: #ffffff;
  --ink: #10213d;
  --muted: #65748a;
  --line: rgba(13, 50, 102, 0.12);
  --shadow: 0 26px 70px rgba(10, 38, 84, 0.16);
  --radius: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.site-header {
  height: 86px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand .custom-logo,
.brand .bundled-logo {
  display: block;
  width: auto;
  max-width: 340px;
  max-height: 60px;
  object-fit: contain;
}

.brand-mark {
  width: 42px;
  height: 42px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--azure), var(--cyan));
  box-shadow: 0 10px 24px rgba(8, 119, 220, 0.24);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  position: absolute;
  background: var(--yellow);
}

.brand-mark::before {
  top: 8px;
  right: 8px;
}

.brand-mark::after {
  left: 9px;
  bottom: 8px;
  background: var(--green);
}

.imprint-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 21px;
  border: 1px solid rgba(12, 39, 85, 0.16);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.imprint-link:hover,
.imprint-link:focus-visible {
  transform: translateY(-2px);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(12, 39, 85, 0.12);
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  place-items: center;
  padding: 64px 24px 100px;
  position: relative;
}

.hero::before {
  content: "";
  width: 760px;
  height: 760px;
  position: absolute;
  top: -360px;
  right: -250px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(8, 119, 220, 0.16), rgba(29, 188, 210, 0.04));
}

.hero::after {
  content: "";
  width: 460px;
  height: 460px;
  position: absolute;
  left: -230px;
  bottom: -190px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(128, 195, 66, 0.13), rgba(244, 197, 53, 0.04));
}

.hero-card {
  width: min(980px, 100%);
  padding: clamp(46px, 8vw, 96px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 92% 4%, rgba(29, 188, 210, 0.16), transparent 28%),
    radial-gradient(circle at 5% 96%, rgba(128, 195, 66, 0.13), transparent 25%),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card::before {
  content: "";
  width: 8px;
  height: 70%;
  position: absolute;
  top: 15%;
  left: 0;
  border-radius: 0 99px 99px 0;
  background: linear-gradient(var(--yellow), var(--green), var(--cyan), var(--azure));
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(128, 195, 66, 0.14);
  animation: breathe 2.4s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(0.85); opacity: 0.72; }
  50% { transform: scale(1); opacity: 1; }
}

.hero h1 {
  max-width: 800px;
  margin: 0 auto;
  color: var(--navy);
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--azure);
}

.hero-message {
  max-width: 670px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.progress {
  width: min(430px, 100%);
  height: 8px;
  margin: 38px auto 0;
  border-radius: 999px;
  overflow: hidden;
  background: #e7edf5;
}

.progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--azure), var(--cyan), var(--green), var(--yellow));
  background-size: 180% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  from { background-position: 100% 0; }
  to { background-position: -80% 0; }
}

.contact-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  color: var(--blue);
  font-size: 0.93rem;
  font-weight: 650;
}

.contact-row a {
  text-decoration: none;
}

.contact-row a:hover {
  text-decoration: underline;
}

.imprint {
  padding: 96px 24px;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  background: var(--navy);
}

.imprint-inner {
  width: min(920px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: #8fddea;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.imprint h2 {
  margin: 0 0 38px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

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

.imprint-block {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.imprint-block h3 {
  margin: 0 0 12px;
  color: #8fddea;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.imprint-block p {
  margin: 0;
}

.imprint-block a {
  color: var(--white);
}

.site-footer {
  padding: 26px 24px;
  color: rgba(255, 255, 255, 0.62);
  background: #071b3b;
  text-align: center;
  font-size: 0.84rem;
}

@media (max-width: 680px) {
  .site-header {
    width: min(100% - 32px, 1180px);
    height: 74px;
  }

  .brand-text {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand .custom-logo,
  .brand .bundled-logo {
    max-width: min(225px, 59vw);
    max-height: 48px;
  }

  .imprint-link {
    min-height: 39px;
    padding: 0 15px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: calc(100svh - 74px);
    padding: 36px 16px 72px;
  }

  .hero-card {
    padding: 52px 25px;
    border-radius: 24px;
  }

  .hero-card::before {
    width: 6px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.35rem);
  }

  .hero-message {
    font-size: 1rem;
  }

  .contact-row {
    flex-direction: column;
  }

  .imprint {
    padding: 72px 24px;
  }

  .imprint-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
