:root {
  --cream: #f7f4ee;
  --ink: #14120f;
  --ink-soft: #57534a;
  --border: #e6e1d6;
  --card-bg: #ffffff;
  --radius-lg: 22px;
  --radius-md: 14px;
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.hero {
  padding: 88px 0 56px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.subtitle {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.5;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 100px;
}

.app-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.app-card--active {
  cursor: pointer;
}

.app-card--active:hover {
  transform: translateY(-4px);
  border-color: #d8d2c2;
  box-shadow: 0 14px 30px rgba(20, 18, 15, 0.08);
}

.app-card--soon {
  opacity: 0.55;
}

.app-card-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.app-emoji {
  font-size: 26px;
}

.app-status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
}

.app-status--live {
  color: #0f7a3d;
  background: #e9f7ee;
  border-color: #c9ecd6;
}

.app-card h2 {
  font-family: var(--font-display);
  font-size: 19px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.app-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 20px;
}

.app-cta {
  margin-top: auto;
  font-weight: 600;
  font-size: 14px;
}

.app-cta--soon {
  color: var(--ink-soft);
  font-weight: 500;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  color: var(--ink-soft);
  font-size: 13px;
}

@media (max-width: 860px) {
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .apps-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 40px; }
  .br-desktop { display: none; }
}
