:root {
  --bg: #0f0f13;
  --card: #1f1f28;
  --text: #e5e7eb;
  --muted: #888f9b;
  --orange-start: #ff6a00;
  --orange-end: #ff8c00;
  --radius: 16px;
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  font-family: 'Inter', system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: linear-gradient(135deg, #0f0f13 0%, #1a1a24 70%);
  color: var(--text);
  min-height: 100vh;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hero {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.left { flex: 1 1 500px; min-width: 320px; }
.badge {
  display: inline-block;
  background: rgba(255, 106, 0, 0.1);
  color: #ff8c00;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0;
  line-height: 1.1;
  font-weight: 700;
}
.highlight { color: #ff8c00; display: block; }
.subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 580px;
  color: var(--muted);
}
.actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.primary {
  background: linear-gradient(90deg, var(--orange-start), var(--orange-end));
  color: #fff;
}
.secondary {
  background: #0f0f13;
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}
.metrics {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.metric {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  padding: 12px 16px;
  border-radius: 12px;
  min-width: 150px;
}
.metric .icon { font-size: 1.4rem; margin-right: 6px; }
.metric .label { font-weight: 600; font-size: 0.9rem; }

.right {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 280px;
}
.logo-wrapper {
  background: radial-gradient(circle at 30% 30%, rgba(255, 138, 0, 0.35), transparent 70%);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.logo-wrapper img {
  max-width: 320px;
  display: block;
}

.onboard {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}
.step {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  flex: 1 1 300px;
  position: relative;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-number {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ff6a00, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-width: 32px;
}
.step-content { flex: 1; }
.step h3 { margin: 0; font-size: 1.2rem; margin-bottom: 4px; }
.description { margin: 4px 0 10px; color: #b0b6c0; }
.btn.small {
  padding: 8px 16px;
  font-size: 0.8rem;
  border-radius: 999px;
  text-decoration: none;
}
.hint {
  font-weight: 600;
  margin-left: 6px;
  display: inline-block;
  position: relative;
}
.footer {
  margin-top: 4rem;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
}
code {
  background: rgba(255,255,255,0.08);
  padding: 3px 6px;
  border-radius: 4px;
  font-family: monospace;
}

.extension-hint {
  margin-right: 4%;
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 999;
  pointer-events: none;
  font-family: 'Inter', system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
}

.hint-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 140, 0, 0.8);
  padding: 10px 14px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 60px -10px rgba(255, 106, 0, 0.4);
  animation: glow 2.5s infinite alternate;
}

.custom-arrow {
  width: 80px;
  height: auto;
  display: block;
}


.fallback-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.arrow-icon {
  font-size: 1.4rem;
}

.text {
  white-space: nowrap;
}

/* small responsive tweak: hide text on very narrow screens */
@media (max-width: 600px) {
  .hint-inner {
    padding: 8px 10px;
  }
  .text {
    display: none;
  }
}

/* subtle glow animation */
@keyframes glow {
  from {
    box-shadow: 0 25px 50px -12px rgba(255, 106, 0, 0.3);
  }
  to {
    box-shadow: 0 35px 80px -5px rgba(255, 140, 0, 0.6);
  }
}