/* LocalVR RevMan Hub - Landing Page */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #faf9f7;
  color: #374151;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 720px;
  padding: 32px 24px;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 48px;
}

.logo {
  height: 48px;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* Card */
.card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 200ms ease;
  cursor: pointer;
}

.card:hover {
  border-color: #d4bda2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.card:active {
  transform: translateY(0);
}

.card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 189, 162, 0.12);
  border-radius: 10px;
  color: #d4bda2;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-content {
  flex: 1;
  min-width: 0;
}

.card-content h2 {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 3px;
}

.card-content p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}

.card-arrow {
  flex-shrink: 0;
  color: #d1d5db;
  transition: color 200ms ease, transform 200ms ease;
}

.card-arrow svg {
  width: 18px;
  height: 18px;
}

.card:hover .card-arrow {
  color: #d4bda2;
  transform: translateX(2px);
}

/* Footer */
footer {
  text-align: center;
  margin-top: 48px;
}

footer p {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Responsive */
@media (min-width: 640px) {
  .grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 12px;
  }

  .card-arrow {
    display: none;
  }

  .card-content p {
    font-size: 12px;
  }
}
