:root {
  --bg: #fff9f2;
  --paper: #ffffff;
  --ink: #1b2b2a;
  --muted: #5b6b6a;
  --sun: #f8a11b;
  --mint: #20a37c;
  --sky: #53b5d8;
  --line: #e9dfd1;
  --shadow: 0 18px 48px rgba(29, 40, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(83, 181, 216, 0.22), transparent 34%),
    radial-gradient(circle at 90% 2%, rgba(248, 161, 27, 0.2), transparent 28%),
    radial-gradient(circle at 50% 98%, rgba(32, 163, 124, 0.2), transparent 33%),
    var(--bg);
  min-height: 100vh;
}

.glow {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}

.glow-left {
  top: 140px;
  left: -70px;
  background: rgba(83, 181, 216, 0.3);
}

.glow-right {
  bottom: 60px;
  right: -70px;
  background: rgba(248, 161, 27, 0.28);
}

.topbar {
  width: min(1120px, 92vw);
  margin: 18px auto 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: clamp(170px, 22vw, 250px);
  height: auto;
  display: block;
}

.top-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.waitlist {
  text-decoration: none;
  font-weight: 800;
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: 1.05rem;
  color: #0f5748;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #d9eee6;
  border-radius: 999px;
  padding: 0.62rem 1rem;
}

.waitlist-secondary {
  color: #3f4d63;
  border-color: #dde4f2;
}

main {
  width: min(1120px, 92vw);
  margin: 0 auto 40px;
  display: grid;
  gap: 20px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  padding: clamp(22px, 3.6vw, 38px);
}

.kicker {
  display: inline-block;
  margin: 0 0 12px;
  padding: 0.35rem 0.66rem;
  border-radius: 999px;
  background: #fff2df;
  color: #90540f;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

h1,
h2 {
  font-family: "Baloo 2", "Nunito", sans-serif;
  margin: 0;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 0.96;
}

.tagline {
  margin: 14px 0 0;
  color: #274543;
  font-size: clamp(1.02rem, 1.7vw, 1.3rem);
  max-width: 36ch;
}

.owner {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.hero-cta {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  padding: 0.72rem 1.08rem;
  border: 0;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sun), #ff7b37);
  color: #fff;
}

.btn-soft {
  background: #e8f8f3;
  color: #0f5c49;
}

.hero-art img {
  width: 100%;
  height: 100%;
  max-height: 390px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid #dce9dd;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature {
  padding: 18px 18px 20px;
}

.feature h2 {
  font-size: 1.3rem;
  line-height: 1.04;
}

.feature p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.56;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.details {
  padding: 22px;
}

.details h2 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.details p {
  margin: 9px 0;
  color: var(--muted);
  line-height: 1.58;
}

.address {
  color: var(--ink) !important;
  font-weight: 800;
}

.text-link {
  color: #0f6ca0;
  font-weight: 800;
  text-underline-offset: 3px;
}

.waitlist-form {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.waitlist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.waitlist-form label {
  display: grid;
  gap: 6px;
  color: #3a4f4d;
  font-weight: 700;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  border: 1px solid #d6dce7;
  border-radius: 12px;
  padding: 0.62rem 0.72rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
  outline: 2px solid #b8dcff;
  border-color: #8abde8;
}

.waitlist-feedback {
  min-height: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.waitlist-feedback.is-success {
  color: #1a7f53;
}

.waitlist-feedback.is-error {
  color: #b91c1c;
}

.waitlist-feedback.is-info {
  color: #315980;
}

.waitlist-alt-contact {
  margin-top: 10px;
}

.waitlist-alt-contact a {
  color: #0f6ca0;
  font-weight: 800;
  text-underline-offset: 3px;
}

.waitlist-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.admin {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.admin-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.admin-feedback {
  min-height: 1.2rem;
  font-weight: 700;
}

.admin-feedback.is-success {
  color: #1a7f53;
}

.admin-feedback.is-error {
  color: #b91c1c;
}

.admin-feedback.is-info {
  color: #315980;
}

.admin-form {
  display: grid;
  gap: 10px;
}

.admin-form.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-form.two-col button {
  grid-column: 1 / -1;
  justify-self: start;
}

.admin-form label {
  display: grid;
  gap: 6px;
  color: #3a4f4d;
  font-weight: 700;
}

.admin-form input {
  width: 100%;
  border: 1px solid #d6dce7;
  border-radius: 12px;
  padding: 0.62rem 0.72rem;
  font: inherit;
}

.admin-form input:focus {
  outline: 2px solid #b8dcff;
  border-color: #8abde8;
}

.admin-signed-in {
  color: var(--muted);
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-tab {
  border: 1px solid #d5dce8;
  background: #f8fbff;
  color: #2f4563;
  border-radius: 10px;
  padding: 0.45rem 0.68rem;
  font-weight: 800;
  cursor: pointer;
}

.admin-tab.is-active {
  background: #e6f1ff;
  border-color: #99bcf3;
}

.admin-list {
  margin: 0;
  padding-left: 1.2rem;
  color: #334747;
  display: grid;
  gap: 5px;
}

.footer {
  width: min(1120px, 92vw);
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #4f6361;
  font-weight: 700;
}

.footer img {
  width: 26px;
  height: 26px;
  object-fit: cover;
  border-radius: 7px;
}

.reveal-1,
.reveal-2,
.reveal-3 {
  animation: rise 0.65s ease both;
}

.reveal-2 {
  animation-delay: 0.1s;
}

.reveal-3 {
  animation-delay: 0.18s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-art img {
    max-height: 340px;
  }

  .feature-grid,
  .split,
  .admin-form.two-col,
  .waitlist-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar {
    margin-top: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .top-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .waitlist {
    font-size: 0.95rem;
    padding: 0.58rem 0.88rem;
  }

  .details,
  .feature,
  .hero,
  .admin {
    border-radius: 20px;
  }
}
