:root {
  --page-bg: #f4f1eb;
  --page-bg-soft: #fbfaf7;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-border: rgba(80, 86, 92, 0.12);
  --text: #20252b;
  --muted: #5f6871;
  --accent: #8aa0a6;
  --shadow: 0 24px 60px rgba(78, 85, 92, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.8)),
    url("background-real.jpg") center right / cover no-repeat,
    linear-gradient(180deg, var(--page-bg-soft), var(--page-bg));
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

body::before {
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.85), transparent 32%),
    radial-gradient(circle at bottom right, rgba(225, 232, 235, 0.58), transparent 30%);
}

body::after {
  inset: 20px;
  border: 1px solid rgba(99, 107, 114, 0.09);
}

.page-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 28px;
}

.hero-card {
  position: relative;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--panel-border);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
}

.hero-accent {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(32, 37, 43, 0.12), rgba(32, 37, 43, 0.02));
}

.brand-logo {
  display: block;
  width: min(540px, 100%);
  height: auto;
  margin: 0 auto 30px;
}

.content {
  max-width: 580px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #171c21;
}

.description {
  margin: 18px 0 0;
  max-width: 54ch;
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  line-height: 1.78;
  color: var(--muted);
}

.description.secondary {
  margin-top: 12px;
  max-width: 50ch;
  color: #707982;
}

@media (max-width: 720px) {
  body::after {
    inset: 12px;
  }

  .page-shell {
    padding: 18px;
    justify-content: center;
  }

  .hero-card {
    border-radius: 0;
  }

  .brand-logo {
    margin-bottom: 22px;
  }

  .description {
    line-height: 1.65;
  }
}
