:root {
  --purple: #7443b5;
  --purple-dark: #4c2784;
  --orange: #ff8428;
  --cream: #fff7ed;
  --paper: #fffaf5;
  --ink: #261b31;
  --muted: #6f6278;
  --soft-line: rgba(116, 67, 181, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff4e7 0%, var(--paper) 42%, #ffffff 100%);
}

.landing {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -72px;
  width: 62vw;
  height: 180px;
  border-radius: 100% 0 0 0;
  background: rgba(255, 250, 245, 0.96);
  z-index: -1;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(38, 27, 49, 0.58) 0%, rgba(38, 27, 49, 0.26) 44%, transparent 78%),
    linear-gradient(0deg, rgba(38, 27, 49, 0.34) 0%, transparent 44%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 24px;
}

.status-pill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 10px 26px rgba(38, 27, 49, 0.12);
  backdrop-filter: blur(18px) saturate(1.2);
}

.status-pill {
  gap: 8px;
  padding: 7px 13px;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  text-shadow: 0 1px 8px rgba(38, 27, 49, 0.24);
}

.status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 132, 40, 0.18);
}

.message-panel {
  width: min(610px, calc(100% - 32px));
  margin: 0 auto 46px;
  margin-left: max(16px, calc((100vw - 1160px) / 2));
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 34px 34px 34px 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.1)),
    rgba(255, 250, 245, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 28px 78px rgba(38, 27, 49, 0.26);
  backdrop-filter: blur(24px) saturate(1.28);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(38, 27, 49, 0.34);
  font-size: clamp(2.25rem, 5.1vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.message-panel p:not(.eyebrow) {
  margin: 20px 0 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 10px rgba(38, 27, 49, 0.3);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.72;
}

.visit-card {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px 22px 22px 8px;
  background: rgba(255, 250, 245, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.visit-card strong {
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(38, 27, 49, 0.28);
  font-size: 1rem;
}

.visit-card span {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.note-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1160px, calc(100% - 32px));
  margin: -18px auto 0;
  padding-bottom: 32px;
}

.note-bar article {
  position: relative;
  min-height: 128px;
  overflow: hidden;
  padding: 24px 24px 22px;
  border: 1px solid var(--soft-line);
  border-radius: 26px 26px 26px 8px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(76, 39, 132, 0.08);
}

.note-bar article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--orange), var(--purple));
}

.note-bar strong {
  display: block;
  margin-bottom: 9px;
  color: var(--purple);
  font-size: 1.12rem;
}

.note-bar span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .hero {
    min-height: 84vh;
  }

  .hero::after {
    width: 100vw;
    right: -28vw;
  }

  .hero-image {
    object-position: 34% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(38, 27, 49, 0.08) 0%, rgba(38, 27, 49, 0.72) 100%),
      linear-gradient(90deg, rgba(38, 27, 49, 0.18), transparent);
  }

  .topbar {
    padding-top: 18px;
  }

  .message-panel {
    width: calc(100% - 24px);
    margin: 0 auto 20px;
  }

  .note-bar {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 88vh;
  }

  .topbar {
    width: calc(100% - 24px);
  }

  .status-pill {
    min-height: 32px;
    font-size: 0.8rem;
  }

  .message-panel {
    padding: 22px;
    border-radius: 26px 26px 26px 8px;
  }

  h1 {
    font-size: clamp(2rem, 12.8vw, 3.2rem);
  }

  .message-panel p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .visit-card,
  .note-bar article {
    border-radius: 20px 20px 20px 8px;
  }
}
