:root {
  --bg: #ffffff;
  --text: #1f2430;
  --muted: #5f6673;
  --line: #e6e8ec;

  --green: #6aa84f;
  --blue: #1c4587;
  --deep-blue: #13138f;
  --soft-green: rgba(106, 168, 79, 0.12);
  --soft-blue: rgba(28, 69, 135, 0.08);

  --font-display: "Gabriela", "Times New Roman", Georgia, serif;
  --font-accent: "Bitter", Georgia, serif;
  --font-body: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(106, 168, 79, 0.06),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(28, 69, 135, 0.05),
      transparent 22%
    ),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
}

.hero {
  width: min(100%, 980px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-block {
  margin-bottom: 24px;
}

.site-logo {
  max-width: 220px;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-fallback {
  display: none;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
}

.eyebrow {
  margin: 0 0 18px;
  max-width: 760px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero-title span {
  display: block;
  color: var(--green);
  font-family: var(--font-accent);
  font-style: italic;
}

.hero-copy {
  margin: 28px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.status-pill {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.9rem 1.3rem;
  border: 1px solid rgba(106, 168, 79, 0.28);
  border-radius: 999px;
  background: var(--soft-green);
  color: #446d31;
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(106, 168, 79, 0.45);
  animation: pulse 2s infinite;
}

.divider {
  width: min(100%, 780px);
  height: 1px;
  margin: 34px 0 28px;
  background: linear-gradient(
    90deg,
    rgba(28, 69, 135, 0.18),
    rgba(106, 168, 79, 0.28),
    rgba(28, 69, 135, 0.18)
  );
}

.bottom-row {
  width: min(100%, 860px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.signature-block {
  padding: 0;
}

.note-label {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.note-value {
  margin: 0;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.25;
  color: var(--green);
}

.value-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(28, 69, 135, 0.16);
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--text);
  font-weight: 600;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(106, 168, 79, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(106, 168, 79, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(106, 168, 79, 0);
  }
}

@media (max-width: 768px) {
  .coming-soon {
    padding: 28px 18px;
  }

  .site-logo {
    max-width: 180px;
    max-height: 120px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
    max-width: 10ch;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.8;
  }

  .note-value {
    font-size: 1.45rem;
  }

  .value-pills {
    gap: 10px;
  }

  .value-pill {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
