/* High Card Club landing (ADR 0015). Same tokens as packages/ui, hand-written. */
:root {
  --night: #14131f;
  --night-2: #1b1a2e;
  --ink: #eef0ff;
  --muted: #a9acd6;
  --mint: #7cf0d8;
  --mint-ink: #0f0e1a;
  --rose: #ff5a8c;
  --line: rgb(255 255 255 / 0.1);
  --glass: rgb(15 14 26 / 0.72);
}
* {
  box-sizing: border-box;
}
html {
  color-scheme: dark;
  background: var(--night);
  color: var(--ink);
  font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0;
  line-height: 1.5;
}
a {
  color: var(--mint);
}
h1,
h2,
h3 {
  font-family: "Bebas Neue", "DM Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin: 0 0 0.4em;
  line-height: 1.05;
}
h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}
h3 {
  font-size: 1.4rem;
}
p {
  margin: 0 0 1em;
}
.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
header.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--ink);
}
nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 18px;
  font-size: 0.95rem;
}
.hero {
  position: relative;
  padding: 72px 0 84px;
  text-align: center;
  overflow: hidden;
}
.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  z-index: -2;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(20 19 31 / 0.55), rgb(20 19 31 / 0.85) 70%, var(--night));
  z-index: -1;
}
.hero p.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--mint-ink);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 0 26px rgb(124 240 216 / 0.45);
}
.btn.ghost {
  background: var(--glass);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.hero .actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 14px;
}
section {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid.cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.card {
  background: var(--night-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}
.card .step {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--mint);
}
.room {
  overflow: hidden;
  padding: 0;
}
.room img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.room .body {
  padding: 12px 14px 14px;
}
.room .price {
  color: var(--mint);
  font-weight: 700;
}
.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plan .big {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.6rem;
  color: var(--mint);
}
ul.plain {
  padding-left: 18px;
  color: var(--muted);
}
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.9rem;
}
footer a {
  color: var(--muted);
  margin-right: 16px;
}
.legal h2 {
  margin-top: 1.6em;
}
.legal {
  max-width: 760px;
}
