:root {
  --cream: #f7f2e9;
  --sand: #eadfce;
  --sage: #7d8878;
  --sage-deep: #5f695d;
  --ink: #243443;
  --muted: #667066;
  --gold: #d7a75d;
  --paper: rgba(255, 253, 248, 0.92);
  --shadow: 0 24px 70px rgba(61, 68, 57, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--cream);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  background:
    radial-gradient(circle at 12% 12%, rgba(215, 167, 93, 0.10), transparent 34rem),
    radial-gradient(circle at 88% 88%, rgba(125, 136, 120, 0.12), transparent 34rem),
    linear-gradient(135deg, var(--cream), var(--sand));
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 42px 0 28px;
}

.coming-soon {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(290px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(26px, 4.5vw, 58px);
  border: 1px solid rgba(95, 105, 93, 0.20);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
  backdrop-filter: blur(5px);
}

.logo-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.logo {
  display: block;
  width: min(100%, 460px);
  height: auto;
  border-radius: 50%;
  box-shadow: 0 14px 40px rgba(53, 62, 53, 0.08);
}

.referral-panel {
  width: min(100%, 460px);
  padding: 22px;
  border: 1px solid rgba(95, 105, 93, 0.18);
  border-radius: 20px;
  background: rgba(247, 242, 233, 0.72);
  text-align: center;
}

.referral-copy {
  margin: 0 0 16px;
  color: #536055;
  font-size: 0.98rem;
  line-height: 1.6;
}

.referral-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid rgba(95, 105, 93, 0.28);
  border-radius: 999px;
  color: #fffdf8;
  background: linear-gradient(135deg, var(--sage-deep), var(--sage));
  box-shadow: 0 10px 24px rgba(61, 68, 57, 0.18);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.referral-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(61, 68, 57, 0.24);
  filter: brightness(1.04);
}

.referral-button:focus-visible {
  outline: 3px solid rgba(215, 167, 93, 0.55);
  outline-offset: 4px;
}

.referral-button-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--sage-deep);
  background: #f8edda;
  font-size: 1rem;
  line-height: 1;
}

.content {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--sage-deep);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.1vw, 3.6rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.intro {
  color: #4f5b51;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}

.divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  width: min(340px, 100%);
  margin: 28px 0 20px;
}

.divider span:not(.heart) {
  display: block;
  height: 1px;
  background: rgba(95, 105, 93, 0.34);
}

.heart {
  color: var(--gold);
  font-size: 1rem;
}

.tagline {
  margin-bottom: 0;
  color: var(--sage-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 2.2vw, 1.65rem);
  font-style: italic;
}

footer {
  padding: 0 20px 24px;
  text-align: center;
}

footer p {
  margin: 0;
  color: rgba(70, 80, 70, 0.72);
  font-size: 0.82rem;
}

@media (max-width: 820px) {
  .page-shell {
    min-height: auto;
    padding-top: 24px;
  }

  .coming-soon {
    grid-template-columns: 1fr;
    text-align: center;
    border-radius: 24px;
  }

  .logo {
    width: min(76vw, 380px);
  }

  .content {
    margin: 0 auto;
  }

  .divider {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
  }

  .coming-soon {
    padding: 22px 18px 28px;
    gap: 24px;
  }

  h1 {
    font-size: 2.15rem;
  }
}

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