@import url("assets/gate-theme.css");

/* ── Landing page layout ── */

.card-column {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  height: 100%;
  padding: 0.5rem clamp(1rem, 2.5vw, 1.75rem) 0.5rem 0;
  overflow: hidden;
}

.card {
  max-height: 100%;
  margin: 0;
  padding: 1.5rem 1.75rem 1.5rem;
}

.card-header {
  margin-bottom: 1.1rem;
  padding-bottom: 0.9rem;
}

.tagline {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.concept-block {
  margin-bottom: 1.35rem;
  padding: 1rem 1.05rem;
  background: rgba(0, 0, 0, 0.28);
  border: 2px solid rgba(230, 57, 0, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(230, 57, 0, 0.12),
    3px 3px 0 rgba(0, 0, 0, 0.35);
}

.concept-block h2 {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(0.58rem, 1.5vw, 0.68rem);
  line-height: 1.7;
  color: var(--accent-bright);
  margin-bottom: 0.55rem;
}

.concept-block p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
  display: grid;
  gap: 0.55rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text);
  font-size: 0.96rem;
}

.feature-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--warn);
  font-size: 0.85rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.actions .btn-primary {
  font-size: 0.58rem;
  padding: 0.9rem 1rem;
}

.footnote {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 820px) {
  .card-column {
    height: auto;
    padding: 0 1rem 1.25rem;
    overflow: visible;
  }

  .card {
    max-height: none;
  }
}

/* ── Legal pages (privacy policy, etc.) ── */

.legal-page {
  overflow-y: auto;
}

.legal-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(1.25rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.75rem);
}

.legal-card {
  width: min(42rem, 100%);
  max-height: none;
  margin: 0;
}

.legal-body {
  margin-bottom: 1.5rem;
}

.legal-section {
  margin-bottom: 1.35rem;
}

.legal-section h2 {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(0.58rem, 1.5vw, 0.68rem);
  line-height: 1.7;
  color: var(--accent-bright);
  margin-bottom: 0.55rem;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.legal-section p {
  margin-bottom: 0.75rem;
}

.legal-section ul {
  margin: 0 0 0.75rem 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.legal-section li::marker {
  color: var(--warn);
}

.legal-section code {
  font-size: 0.9em;
  color: var(--text);
}
