:root {
  --sage: #b8c8bc;
  --sage-deep: #718776;
  --sage-soft: #edf3ee;
  --ink: #1c211d;
  --muted: #6b756c;
  --cream: #fbfaf5;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 18%, rgba(184, 200, 188, 0.60), transparent 30%),
    radial-gradient(circle at 86% 78%, rgba(113, 135, 118, 0.26), transparent 34%),
    linear-gradient(135deg, var(--cream), var(--sage-soft));
}

.page-shell {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 28px;
}

.hero-card {
  width: min(940px, 100%);
  min-height: min(680px, calc(100vh - 56px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid rgba(113, 135, 118, 0.24);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 80px rgba(65, 79, 68, 0.18);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(113, 135, 118, 0.18);
  border-radius: 999px;
  pointer-events: none;
}

.hero-card::before { top: -130px; right: -86px; }
.hero-card::after { bottom: -145px; left: -95px; }

.logo-wrap {
  width: min(430px, 88vw);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(43, 53, 45, 0.10));
}

.eyebrow {
  margin: 4px 0 12px;
  color: var(--sage-deep);
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.1rem, 8vw, 7rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.045em;
  position: relative;
  z-index: 1;
}

.intro {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.divider {
  width: 78px;
  height: 1px;
  margin: 32px auto 22px;
  background: var(--sage-deep);
  opacity: 0.5;
  position: relative;
  z-index: 1;
}

.domain {
  color: var(--ink);
  text-decoration: none;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

.domain:hover { color: var(--sage-deep); }

.footer-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .page-shell { padding: 14px; }
  .hero-card {
    min-height: calc(100vh - 28px);
    border-radius: 24px;
  }
  .eyebrow { letter-spacing: 0.24em; }
}
