:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --surface: #161616;
  --surface-2: #1c1c1c;
  --text: #e8e8e8;
  --text-muted: #999999;
  --accent: #B87333;
  --accent-light: #D4924C;
  --accent-dim: rgba(184, 115, 51, 0.12);
  --accent-glow: rgba(184, 115, 51, 0.25);
  --border: #252525;
  --border-accent: rgba(184, 115, 51, 0.35);
  --radius: 14px;
  --radius-sm: 10px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1a0f06 0%, #0f0804 40%, #0a0a0a 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 72px 24px 64px;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(184, 115, 51, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.logo {
  height: auto;
  width: 600px;
  max-width: 85%;
  margin-bottom: 32px;
  animation: fadeDown 0.5s ease both;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #f0f0f0;
  margin-top: 0;
  margin-bottom: 10px;
  animation: fadeDown 0.55s 0.05s ease both;
}

.tagline {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto 20px;
  animation: fadeDown 0.55s 0.1s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent-light);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: 5px 14px;
  animation: fadeDown 0.55s 0.15s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── Main Content ──────────────────────────────────────────── */
.content {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ─── App Cards ─────────────────────────────────────────────── */
.app-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.app-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  animation: fadeUp 0.5s ease both;
  position: relative;
  overflow: hidden;
}

.app-card:nth-child(1) { animation-delay: 0.2s; }
.app-card:nth-child(2) { animation-delay: 0.28s; }

.app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.app-card:hover {
  border-color: var(--border-accent);
  background: var(--surface-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border-accent);
}

.app-card:hover::before {
  opacity: 1;
}

.app-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  transition: background 0.2s, border-color 0.2s;
}

.app-card:hover .app-icon {
  background: rgba(184, 115, 51, 0.2);
  border-color: rgba(184, 115, 51, 0.5);
}

.app-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #e8e8e8;
  letter-spacing: -0.015em;
}

.app-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
  flex: 1;
  line-height: 1.55;
}

.app-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.app-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.15s ease;
}

.app-card:hover .app-link {
  gap: 8px;
}

.app-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
}

/* ─── Info Strip ────────────────────────────────────────────── */
.info-strip {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  flex: 1;
  min-width: 140px;
}

.info-icon {
  color: var(--accent);
  flex-shrink: 0;
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
}

.footer p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── Animations ────────────────────────────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero { padding: 56px 20px 48px; }
  .app-cards { grid-template-columns: 1fr; }
  .content { padding: 32px 20px 48px; }
  .app-card { padding: 22px; }
  .info-strip { flex-direction: column; }
  .info-item { min-width: unset; }
}
