:root {
  --bg: #101012;
  --text: #f5f4f0;
  --text-dim: #a39d90;
  --accent: #ff1f3d;
  --accent-bright: #ff6161;
  --accent-glow: rgba(255, 97, 97, 0.45);
  --font-display: "Space Grotesk", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.landing {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 24px;
  text-align: center;
}

.brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 2.75rem);
  letter-spacing: 0.06em;
  color: var(--text);
}

.glass-card {
  display: block;
  width: 100%;
  max-width: 300px;
  text-decoration: none;
  color: inherit;
  border-radius: 22px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.glass-card:hover,
.glass-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 97, 97, 0.4);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.5),
    0 0 24px var(--accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.glass-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
}

.glass-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.glass-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 4px 6px;
}

.glass-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--accent-bright);
}

.glass-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-dim);
}
