:root {
  color-scheme: light;
  --bg: #f4efe6;
  --panel: rgba(255, 252, 247, 0.84);
  --panel-border: rgba(107, 76, 37, 0.14);
  --text: #23180f;
  --muted: #6f6252;
  --accent: #a85d2a;
  --accent-soft: rgba(168, 93, 42, 0.12);
  --shadow: 0 30px 80px rgba(52, 33, 11, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 215, 170, 0.8), transparent 32%),
    radial-gradient(circle at bottom right, rgba(187, 220, 206, 0.82), transparent 28%),
    linear-gradient(135deg, #f8f1e6 0%, #efe5d6 48%, #f6efe7 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.landing-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  overflow: hidden;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.72;
}

.ambient-one {
  width: 280px;
  height: 280px;
  top: 10%;
  left: 8%;
  background: rgba(219, 117, 50, 0.16);
}

.ambient-two {
  width: 360px;
  height: 360px;
  right: -80px;
  bottom: 2%;
  background: rgba(76, 145, 130, 0.16);
}

.landing-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  padding: 28px;
  display: grid;
  justify-items: center;
  gap: 24px;
  border: 1px solid var(--panel-border);
  border-radius: 32px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand-mark {
  display: block;
  width: min(100%, 720px);
  height: auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.portal-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(107, 76, 37, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 240, 230, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.portal-card:hover,
.portal-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(168, 93, 42, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 20px 44px rgba(84, 53, 20, 0.12);
  outline: none;
}

.card-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portal-card strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.05;
}

.card-copy {
  color: var(--muted);
  line-height: 1.65;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  color: var(--text);
  font-weight: 700;
}

.card-cta::after {
  content: "→";
  font-size: 1rem;
}

@media (max-width: 760px) {
  .landing-shell {
    padding: 20px;
  }

  .landing-panel {
    padding: 22px;
    border-radius: 26px;
    gap: 18px;
  }

  .brand-mark {
    width: min(100%, 640px);
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}
